Skip to content

Commit dd37995

Browse files
committed
chore: Changes on GitHub workflow
1 parent 2855535 commit dd37995

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,15 @@ env:
2727

2828
jobs:
2929
test:
30+
needs: lint
3031
strategy:
3132
matrix:
3233
os: [ ubuntu-latest, macos-latest, windows-latest ]
3334
rust: [ stable, beta ]
3435
features: [ 'std', 'alloc', 'std,lender', 'alloc,lender' ]
3536
runs-on: ${{ matrix.os }}
3637
timeout-minutes: 5
38+
continue-on-error: true
3739
if: github.event_name != 'schedule' && github.event_name != 'workflow_dispatch' && !endsWith(github.ref, '-nightly') && !endsWith(github.head_ref, '-nightly')
3840
steps:
3941
- uses: actions/checkout@v2
@@ -67,13 +69,15 @@ jobs:
6769
- name: Run fmt
6870
run: cargo fmt --verbose --all -- --check
6971
nightly-test:
72+
needs: nightly-lint
7073
strategy:
7174
matrix:
7275
os: [ ubuntu-latest, macos-latest, windows-latest ]
7376
rust: [ nightly ]
7477
features: [ 'std', 'alloc', 'std,lender', 'alloc,lender' ]
7578
runs-on: ${{ matrix.os }}
7679
timeout-minutes: 5
80+
continue-on-error: true
7781
steps:
7882
- uses: actions/checkout@v2
7983
- uses: actions-rs/toolchain@v1

0 commit comments

Comments
 (0)