ci.yml (433B)
1 name: CI 2 3 on: 4 pull_request: 5 push: 6 7 jobs: 8 build: 9 runs-on: ubuntu-latest 10 strategy: 11 matrix: 12 emacs_version: 13 - 24.3 14 - 26.3 15 - 27.2 16 - 28.2 17 - snapshot 18 steps: 19 - uses: purcell/setup-emacs@master 20 with: 21 version: ${{ matrix.emacs_version }} 22 23 - uses: actions/checkout@v3 24 - name: Run tests 25 run: | 26 make clean 27 make test