Merge pull request #227 from wyuenho/refactor-show-hunk #127
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: | |
| paths: | |
| - '**.el' | |
| - '**ci.yml' | |
| - 'Makefile' | |
| branches: | |
| - master | |
| pull_request: | |
| paths: | |
| - '**.el' | |
| - '**ci.yml' | |
| - 'Makefile' | |
| branches: | |
| - master | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| continue-on-error: '${{ matrix.experimental }}' | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| emacs_version: | |
| - '26.1' | |
| - '26.3' | |
| - '27.2' | |
| - '28.2' | |
| - '29.4' | |
| - '30.1' | |
| - 'release-snapshot' | |
| experimental: [false] | |
| include: | |
| - emacs_version: 'snapshot' | |
| experimental: true | |
| steps: | |
| - name: Setup Emacs | |
| uses: purcell/setup-emacs@master | |
| with: | |
| version: ${{ matrix.emacs_version }} | |
| - name: Checkout Code | |
| uses: actions/checkout@v3 | |
| - name: Run tests | |
| run: make test |