Skip to content

Commit

Permalink
continue on error with nightly (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
hirosassa authored Oct 26, 2022
1 parent 761cacf commit 8a46f86
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,19 @@ jobs:

- name: Run cargo check
run: cargo check
continue-on-error: ${{ matrix.rust == 'nightly' }}

- name: Run cargo fmt
run: cargo fmt --all -- --check
continue-on-error: ${{ matrix.rust == 'nightly' }}

- name: Run cargo clippy
run: cargo clippy -- -D warnings -W clippy::nursery
continue-on-error: ${{ matrix.rust == 'nightly' }}

- name: Run cargo test
run: cargo test --release --all-features
continue-on-error: ${{ matrix.rust == 'nightly' }}

coverage:
runs-on: ubuntu-latest
Expand All @@ -56,3 +60,4 @@ jobs:
with:
files: lcov.info
fail_ci_if_error: true
continue-on-error: true

0 comments on commit 8a46f86

Please sign in to comment.