fix(flx-rs): avoid errors when flx-rs package is not installed #112
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: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
emacs-version: | |
- 27.2 | |
- 28.1 | |
- snapshot | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: jcs090218/setup-emacs@master | |
with: | |
version: ${{ matrix.emacs-version }} | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
- uses: emacs-eask/setup-eask@master | |
with: | |
version: 'snapshot' | |
- name: Print emacs version | |
run: | | |
emacs --version | |
- run: echo "$HOME/.cask/bin" >> $GITHUB_PATH | |
- run: make install | |
- run: make compile | |
- run: make lint | |
- run: make test |