bump 1.1.0 #84
Workflow file for this run
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: ELisp CI | |
on: | |
workflow_dispatch: | |
push: | |
paths-ignore: | |
- '**.md' | |
- '**.org' | |
- '.dir-locals.el' | |
jobs: | |
lisp-test: | |
timeout-minutes: 10 | |
runs-on: macos-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
zig-version: [0.13.0] | |
emacs_version: | |
- 28.2 | |
- 29.3 | |
- snapshot | |
steps: | |
- uses: purcell/setup-emacs@master | |
with: | |
version: ${{ matrix.emacs_version }} | |
- uses: mlugg/setup-zig@v1 | |
with: | |
version: ${{ matrix.zig-version }} | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
make install-deps | |
- name: Compile dyn | |
run: | | |
OMG_VERBOSE=1 OMG_TEST=1 make clean all | |
- name: Run test | |
working-directory: emacs | |
env: | |
GITHUB_TOKEN: ${{ secrets.MY_TOKEN }} | |
run: | | |
make lisp-test |