Disabling tool-bar in a way that works for Emacs compiled w/o X. #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
name: test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
emacs_version: [29.1] | |
check: [load-file, byte-compile, checkdoc] | |
steps: | |
- uses: purcell/[email protected] | |
with: | |
version: ${{ matrix.emacs_version }} | |
- uses: actions/checkout@v4 | |
- uses: leotaku/elisp-check@master | |
with: | |
check: ${{ matrix.check }} | |
file: '*.el' | |
warnings_as_errors: true |