From 49b7da0643803e0a4cfe2e4ac23146a6ba2e31c7 Mon Sep 17 00:00:00 2001 From: Rob Wagner Date: Thu, 5 Jun 2025 18:01:49 -0400 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 306e171..7cb94f6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,8 +15,7 @@ jobs: strategy: matrix: toolchain: - # - stable - # - beta + - stable - nightly steps: - uses: actions/checkout@v4 @@ -26,9 +25,9 @@ jobs: components: clippy, rustfmt - uses: Swatinem/rust-cache@v2 - name: run clippy - run: cargo clippy --all-features -- -D warnings + run: cargo +nightly clippy --all-features -- -D warnings - name: run formatter checks - run: cargo fmt --all --check + run: cargo +nightly fmt --all --check test: needs: check @@ -36,8 +35,7 @@ jobs: strategy: matrix: toolchain: - # - stable - # - beta + - stable - nightly steps: - uses: actions/checkout@v4 @@ -46,4 +44,4 @@ jobs: toolchain: ${{ matrix.toolchain }} - uses: Swatinem/rust-cache@v2 - name: run tests - run: cargo test --all-features + run: cargo +nightly test --all-features