diff options
| author | Jen-Chieh Shen <jcs090218@gmail.com> | 2022-04-28 03:27:59 +0800 |
|---|---|---|
| committer | Jen-Chieh Shen <jcs090218@gmail.com> | 2022-04-28 03:27:59 +0800 |
| commit | c29c1f78886e115ac33cc7704c85eca487a6d1e8 (patch) | |
| tree | e2f5880e6ef949c68dd4d37cbd2d7eccf454b59a /.github | |
| parent | 26ecc903c50b2ffd289bbe981f9ad03626fc0057 (diff) | |
| download | rust-mode-c29c1f78886e115ac33cc7704c85eca487a6d1e8.tar.gz | |
Use Eask for CI
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/test.yml | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6b016cf..dcc875e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,27 +4,33 @@ on: [push, pull_request] jobs: unix-test: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} strategy: - max-parallel: 6 + fail-fast: false matrix: + os: [ubuntu-latest, macos-latest, windows-latest] emacs-version: - 26.3 - 27.2 + - 28.1 # - snapshot steps: - uses: actions/checkout@v2 - - uses: purcell/setup-emacs@master + - uses: jcs090218/setup-emacs@master with: version: ${{ matrix.emacs-version }} - - uses: conao3/setup-cask@master + - uses: actions/setup-node@v2 with: - version: 0.8.4 + node-version: '16' + + - uses: emacs-eask/setup-eask@master + with: + version: 'snapshot' - name: Run tests run: | - make test + make ci |
