Skip to content

Commit

Permalink
Enforced Nightly toolchain for test
Browse files Browse the repository at this point in the history
  • Loading branch information
MinaMatta98 committed Feb 19, 2024
1 parent 004978c commit b1a2110
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:

# Determines if the cache should be saved even when the workflow has failed.
# default: "false"
cache-on-failure: "false"
cache-on-failure: "true"

# Determines which crates are cached.
# If `true` all crates will be cached, otherwise only dependent crates will be cached.
Expand Down Expand Up @@ -91,9 +91,14 @@ jobs:
needs: build-env

steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Checkout repository
uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
profile: minimal

- name: Perform Test
run: |
cargo +nightly test --release
- name: Perform Test
run: |
cargo +nightly test --release

0 comments on commit b1a2110

Please sign in to comment.