Skip to content

Commit

Permalink
Add nightly check (tari-project#99)
Browse files Browse the repository at this point in the history
This PR adds a nightly check to CI; this may help catch issues for downstream use of the library.
  • Loading branch information
AaronFeickert authored Jul 9, 2024
1 parent 8dfc1a8 commit 3653e35
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
run: cargo install cargo-lints
- name: Lints
run: cargo lints clippy --all-targets --all-features
check:
check-stable:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -39,6 +39,15 @@ jobs:
run: cargo check --all-targets --no-default-features
- name: Check (all features)
run: cargo check --all-targets --all-features
check-nightly:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
- name: Check (no features)
run: cargo check --all-targets --no-default-features
- name: Check (all features)
run: cargo check --all-targets --all-features
docs:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 3653e35

Please sign in to comment.