test.yml (491B)
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 - 25.1 14 - 26.3 15 - 27.2 16 - snapshot 17 steps: 18 - uses: purcell/setup-emacs@master 19 with: 20 version: ${{ matrix.emacs_version }} 21 22 - uses: actions/checkout@v1 23 - name: Install dependencies 24 run: sudo apt install pandoc aspell 25 - name: Run tests 26 run: | 27 make clean 28 make test