docs: Add GNU GPL v3 license #12
This file contains hidden or 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: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| emacs_version: ['28.1', '29.4', '30.2'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: jcs090218/setup-emacs@master | |
| with: | |
| version: ${{ matrix.emacs_version }} | |
| - uses: emacs-eask/setup-eask@master | |
| with: | |
| version: 'snapshot' | |
| - run: eask package | |
| - run: eask install-deps | |
| - run: eask compile | |
| - run: eask lint package | |
| - run: eask test buttercup |