diff options
| author | brotzeit <brotzeitmacher@gmail.com> | 2021-11-26 20:11:43 +0100 |
|---|---|---|
| committer | brotzeit <brotzeitmacher@gmail.com> | 2021-11-26 20:13:02 +0100 |
| commit | 63ea805a19cfefccb7fd047b418ad743680c2f2d (patch) | |
| tree | d3d58cbd82b683543530d0f00f1fb8e6ee0503fa | |
| parent | b5e763a8b60a7ed0f3e457dd61cfd2a4426a7ee5 (diff) | |
| download | rust-mode-63ea805a19cfefccb7fd047b418ad743680c2f2d.tar.gz | |
try to fix ci
| -rw-r--r-- | .github/workflows/test.yml | 50 |
1 files changed, 24 insertions, 26 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e41f967..d363ca5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,32 +1,30 @@ -name: GitHub actions CI +name: CI -on: [push] +on: [push, pull_request] jobs: - build: - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - rust_version: [stable] - emacs_version: - - 25.3 - - 26.3 - - 27.2 - - snapshot + unix-test: + runs-on: ubuntu-latest + strategy: + max-parallel: 6 + matrix: + emacs-version: + - 26.3 + - 27.2 + - snapshot - env: - EMACS_VERSION: ${{ matrix.emacs_version }} - steps: - - uses: hecrj/setup-rust-action@v1 - with: - rust-version: ${{ matrix.rust_version }} - - uses: purcell/setup-emacs@master - with: - version: ${{ matrix.emacs_version }} + steps: + - uses: actions/checkout@v2 - - uses: actions/checkout@v1 + - uses: purcell/setup-emacs@master + with: + version: ${{ matrix.emacs-version }} + + - uses: conao3/setup-cask@master + with: + version: 0.8.4 + + - name: Run tests + run: | + make test - - name: Run tests - run: | - make test |
