Skip to content

Commit

Permalink
ci: use nightly toolchain for cargo test 3
Browse files Browse the repository at this point in the history
  • Loading branch information
gerwin3 committed Dec 19, 2024
1 parent 4533f48 commit 1c6a436
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@ jobs:
DEBIAN_FRONTEND=noninteractive apt-get install -y build-essential ca-certificates clang curl pkg-config
- name: Setup Rust
uses: dtolnay/rust-toolchain@v1
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
toolchain: nightly # TODO: Temporary for testing CI fixed

- name: Test
run: cargo test --all-features
Expand All @@ -129,9 +129,9 @@ jobs:
DEBIAN_FRONTEND=noninteractive apt-get install -y build-essential ca-certificates clang curl pkg-config
- name: Setup Rust
uses: dtolnay/rust-toolchain@master
uses: dtolnay/rust-toolchain@v1
with:
toolchain: nightly # TODO: Temporary for testing CI fixed
toolchain: stable
components: rustfmt, clippy

- name: Rustfmt
Expand Down

0 comments on commit 1c6a436

Please sign in to comment.