enh: customizable blinking behavior for puni-splice #153
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: | |
branches: | |
- master | |
- develop | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
name: 'Compile' | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
emacs_version: | |
- 26.1 | |
- 26.2 | |
- 26.3 | |
- 27.1 | |
- 27.2 | |
- 28.1 | |
- 28.2 | |
- snapshot | |
steps: | |
- name: '[dep] Install Emacs' | |
uses: purcell/setup-emacs@master | |
with: | |
version: ${{ matrix.emacs_version }} | |
- name: '[puni] Checkout Puni repo' | |
uses: actions/checkout@v2 | |
- name: '[puni] Byte compilation tests' | |
run: make compile | |
check-style: | |
name: 'Code style check' | |
runs-on: ubuntu-latest | |
steps: | |
- name: '[dep] Install Emacs' | |
uses: purcell/setup-emacs@master | |
with: | |
version: 27.1 | |
- name: '[puni] Checkout Puni repo' | |
uses: actions/checkout@v2 | |
- name: '[puni] Style check' | |
run: make style |