diff options
| author | Jen-Chieh Shen <jcs090218@gmail.com> | 2023-08-04 21:45:56 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-04 21:45:56 -0700 |
| commit | 16805b555a8c21ff954e131461832ef95b4dd260 (patch) | |
| tree | 0c2cb76d7b9ac6f0da69405998c74a5167866101 /.github | |
| parent | 601824cf552d09db62f0cef42c00dc85bd728b04 (diff) | |
| download | rust-mode-16805b555a8c21ff954e131461832ef95b4dd260.tar.gz | |
test: Emacs 29.1
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/test.yml | 68 |
1 files changed, 44 insertions, 24 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 129adf9..eb31e46 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,32 +1,52 @@ name: CI -on: [push, pull_request] +on: + push: + branches: + - master + pull_request: + workflow_dispatch: -jobs: - test: - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: [ubuntu-latest, macos-latest, windows-latest] - emacs-version: - - 26.3 - - 27.2 - - 28.2 - # - snapshot +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true - steps: - - uses: actions/checkout@v3 +jobs: + test: + runs-on: ${{ matrix.os }} + continue-on-error: ${{ matrix.experimental }} + strategy: + fail-fast: false + matrix: + os: [ubuntu-latest, macos-latest, windows-latest] + emacs-version: + - 26.3 + - 27.2 + - 28.2 + - 29.1 + experimental: [false] + include: + - os: ubuntu-latest + emacs-version: snapshot + experimental: true + - os: macos-latest + emacs-version: snapshot + experimental: true + - os: windows-latest + emacs-version: snapshot + experimental: true - - uses: jcs090218/setup-emacs@master - with: - version: ${{ matrix.emacs-version }} + steps: + - uses: actions/checkout@v3 - - uses: emacs-eask/setup-eask@master - with: - version: 'snapshot' + - uses: jcs090218/setup-emacs@master + with: + version: ${{ matrix.emacs-version }} - - name: Run tests - run: | - make ci + - uses: emacs-eask/setup-eask@master + with: + version: 'snapshot' + - name: Run tests + run: + make ci |
