Skip to content

Commit

Permalink
switch CI to nightly because we use the trait alias feature
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-codecov committed Feb 14, 2024
1 parent 509a04c commit 70ba4ed
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
uses: dtolnay/rust-toolchain@nightly
with:
toolchain: stable
toolchain: nightly
- name: Run lint
run: |
cargo fmt --all --check
Expand All @@ -36,9 +36,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
uses: dtolnay/rust-toolchain@nightly
with:
toolchain: stable
toolchain: nightly
- name: Run build
run: |
cargo build
Expand All @@ -51,9 +51,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
uses: dtolnay/rust-toolchain@nightly
with:
toolchain: stable
toolchain: nightly
- name: Run tests
run: |
cargo test
Expand Down

0 comments on commit 70ba4ed

Please sign in to comment.