Allow the "Package Requires" line to be longer than 80 characters. #207
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: | |
- main | |
pull_request: {} | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
emacs_version: [25, 26, 27, 28] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: CI | |
env: | |
VERSION: ${{ matrix.emacs_version }} | |
run: >- | |
make docker CMD="make -k compile checkdoc longlines test" |