Add deadgrep-file-type-alist to allow user-defined easily toggle-able set of types #133
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 test suite | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
emacs_version: | |
- '27.1' | |
- '28.1' | |
- '29.1' | |
steps: | |
- uses: purcell/setup-emacs@master | |
with: | |
version: ${{ matrix.emacs_version }} | |
- uses: conao3/setup-cask@master | |
- name: Download ripgrep | |
run: curl -LO https://github.com/BurntSushi/ripgrep/releases/download/12.1.1/ripgrep_12.1.1_amd64.deb | |
- name: Install ripgrep | |
run: sudo dpkg -i ripgrep_12.1.1_amd64.deb | |
- uses: actions/checkout@v2 | |
- name: Test | |
env: | |
COVERALLS_FLAG_NAME: Emacs ${{ matrix.emacs_version }} | |
COVERALLS_PARALLEL: 1 | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
cask install | |
cask exec ert-runner | |
finalize: | |
runs-on: ubuntu-latest | |
if: always() | |
needs: test | |
steps: | |
- run: curl "https://coveralls.io/webhook?repo_name=$GITHUB_REPOSITORY&repo_token=${{ secrets.GITHUB_TOKEN }}" -d "payload[build_num]=$GITHUB_RUN_NUMBER&payload[status]=done" |