diff options
| author | Cody <cody@codyq.dev> | 2023-03-04 13:58:38 -0600 |
|---|---|---|
| committer | Cody <cody@codyq.dev> | 2023-03-04 13:58:38 -0600 |
| commit | 9869abed83925788d41005c1c4cb2c832fb8825b (patch) | |
| tree | 0dc6b6ec63eb1c53d89793b791d1c933cbb3a032 /.github/workflows | |
| parent | ffd893f7c88769dfcb889861cf662b18f896a55f (diff) | |
| download | sloth-9869abed83925788d41005c1c4cb2c832fb8825b.tar.gz | |
Let chains are nightly :rolling_eyes:
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/testing.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index f2616d9..3a35a2b 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -4,6 +4,7 @@ on: [push, pull_request] jobs: test: strategy: + fail-fast: false matrix: os: - ubuntu @@ -11,7 +12,6 @@ jobs: - macos rust: - nightly - - stable name: Test Rust ${{ matrix.rust }} on ${{ matrix.os }} runs-on: ${{ matrix.os }}-latest steps: @@ -19,4 +19,4 @@ jobs: - uses: dtolnay/rust-toolchain@stable with: toolchain: ${{ matrix.rust }} - - run: cargo test --all-features + - run: cargo test --all-features --no-fail-fast |
