Add a subheading for the v0.1.1 release notes #113
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: build | |
on: | |
pull_request: | |
push: | |
schedule: | |
- cron: '0 0 1 * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
emacs-version: ['27.1', '27.2', '28.1', '28.2', 'snapshot'] | |
action: ['check', 'lint'] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: purcell/setup-emacs@master | |
with: | |
version: ${{ matrix.emacs-version }} | |
- name: Install dependencies | |
run: | | |
make install-deps | |
- name: Run ${{ matrix.action }} | |
run: | | |
make ${{ matrix.action }} |