Avoid pending approval scans during chat redisplay #779
Workflow file for this run
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: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| emacs-version: | |
| - 28.1 | |
| - 28.2 | |
| - 29.4 | |
| - 30.2 | |
| - snapshot | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: jcs090218/setup-emacs@master | |
| with: | |
| version: ${{ matrix.emacs-version }} | |
| - uses: emacs-eask/setup-eask@master | |
| with: | |
| version: 'snapshot' | |
| - name: Install dependencies | |
| run: eask install-deps | |
| - name: Byte-compile | |
| run: eask compile | |
| - name: Lint (package-lint) | |
| run: eask lint package | |
| - name: Lint (checkdoc) | |
| run: eask lint checkdoc | |
| - name: Run tests | |
| run: eask test buttercup | |
| - name: Package | |
| # eask-current-time crashes on Emacs snapshot builds where | |
| # current-time returns the new (TICKS . HZ) format, so don't | |
| # fail the canary job on it. | |
| continue-on-error: ${{ matrix.emacs-version == 'snapshot' }} | |
| run: | | |
| eask package | |
| eask install |