Update queries #341
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run tests | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
emacs_version: | |
# - 27.2 | |
# - 28.1 | |
- snapshot # test only on snapshot as that has treesit | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: purcell/setup-emacs@master | |
with: | |
version: ${{ matrix.emacs_version }} | |
- uses: cask/setup-cask@master | |
with: | |
version: snapshot | |
- run: cask install | |
- run: make compile | |
- run: make lint | |
- run: make checkdoc | |
- run: make test | |
- run: make test-queries | |
- run: cd converter && go test -v |