AGENTS.md: fix nix develop syntax to --command #10
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: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| name: Emacs ${{ matrix.emacs-version }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| emacs-version: | |
| - "29.4" | |
| - "30.2" | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install Emacs ${{ matrix.emacs-version }} | |
| uses: purcell/setup-emacs@master | |
| with: | |
| version: ${{ matrix.emacs-version }} | |
| - name: Install just | |
| uses: extractions/setup-just@v2 | |
| - name: Byte-compile | |
| run: just compile | |
| - name: Lint | |
| run: just lint | |
| - name: Run ERT tests | |
| run: just test |