REF clean up stray TODOs #563
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: CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
emacs_version: | |
- '27.1' | |
- '27.2' | |
- '28.1' | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
architecture: 'x64' | |
- uses: purcell/setup-emacs@master | |
with: | |
version: ${{ matrix.emacs_version }} | |
- uses: conao3/setup-cask@master | |
with: | |
version: '0.8.4' | |
# idk why the 'cask install' should be necessary | |
- name: Run tests | |
if: matrix.allow_failure != true | |
run: | | |
cask install | |
make | |
- name: Run tests (allow failure) | |
if: matrix.allow_failure == true | |
run: | | |
cask install | |
make || true |