Merge another test workflow

This commit is contained in:
Jon Gjengset 2022-09-17 12:46:13 -07:00
parent 971c3fd9eb
commit 2de2235ad3

View file

@ -5,24 +5,17 @@ on:
name: cargo test name: cargo test
jobs: jobs:
test: test:
runs-on: ${{ matrix.os }} runs-on: ubuntu-latest
name: ${{ matrix.os }} / ${{ matrix.toolchain }} name: ubuntu / ${{ matrix.toolchain }}
strategy: strategy:
fail-fast: false
matrix: matrix:
os: [ubuntu-latest, macos-latest, windows-latest] toolchain: [stable, beta, nightly]
toolchain: [stable]
include:
- os: ubuntu-latest
toolchain: beta
- os: ubuntu-latest
toolchain: nightly
steps: steps:
- uses: actions-rs/toolchain@v1 - uses: actions-rs/toolchain@v1
with: with:
profile: minimal profile: minimal
toolchain: ${{ matrix.toolchain }} toolchain: ${{ matrix.toolchain }}
- uses: actions/checkout@v2 - uses: actions/checkout@v3
with: with:
submodules: true submodules: true
- name: cargo test - name: cargo test