Skip to content

Set display-sort-function only when filtering #48

Set display-sort-function only when filtering

Set display-sort-function only when filtering #48

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.emacs_version == 'snapshot' }}
strategy:
matrix:
emacs_version: ['27.1', '28.1', 'snapshot']
steps:
- name: Set up Emacs
uses: purcell/[email protected]
with:
version: ${{ matrix.emacs_version }}
- name: Install Eldev
run: curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/github-eldev | sh
- uses: actions/checkout@v4
- name: Run tests
run: |
eldev --trace --color=always compile --warnings-as-errors
eldev --loading=built-source --trace --color=always test --undercover codecov,dontsend
- name: Upload coverage
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}