test.yml (703B)
1 name: which-key-test 2 on: 3 pull_request: 4 push: 5 branches: 6 - master 7 schedule: 8 - cron: '0 0 1 * *' 9 10 jobs: 11 build: 12 runs-on: ubuntu-latest 13 strategy: 14 fail-fast: false 15 matrix: 16 emacs_version: 17 - 26.1 18 - 26.2 19 - 26.3 20 - 27.1 21 - 27.2 22 - snapshot 23 steps: 24 - uses: purcell/setup-emacs@master 25 with: 26 version: ${{ matrix.emacs_version }} 27 - uses: actions/checkout@v2 28 - name: Install dependencies 29 run: 'git clone https://github.com/emacs-evil/evil' 30 - name: Run tests 31 run: 'emacs -Q -batch -L . -L ./evil -l which-key-tests.el -f ert-run-tests-batch-and-exit'