Fix indent for arguments in a function call #6
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
# CI.yaml --- Github action workflow definition | |
--- | |
name: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
check: | |
strategy: | |
fail-fast: false | |
matrix: | |
emacs_version: | |
- 29.1 | |
- 29.2 | |
- snapshot | |
name: Emacs ${{ matrix.emacs_version }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
architecture: 'x64' | |
- name: Install Emacs | |
uses: purcell/setup-emacs@master | |
with: | |
version: ${{ matrix.emacs_version }} | |
- name: Install Cask | |
uses: conao3/setup-cask@master | |
with: | |
version: 'snapshot' | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Byte Compile | |
run: make compile | |
- name: Run Tests | |
run: make test |