From 641a1664fc9b40d15aabae0abbf897160de52fd0 Mon Sep 17 00:00:00 2001 From: Rasmus Melchior Jacobsen Date: Fri, 20 Oct 2023 16:18:38 +0200 Subject: [PATCH 1/2] Update ci.yaml --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 734defa..5803aca 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -22,8 +22,8 @@ jobs: - name: Update local toolchain run: | rustup update - rustup install nightly - rustup component add clippy --toolchain nightly-x86_64-unknown-linux-gnu + rustup install nightly-2023-10-02 + rustup component add clippy --toolchain nightly-2023-10-02-x86_64-unknown-linux-gnu - uses: actions/checkout@v3 - name: Build run: cargo build --verbose From de576fa76a8afa4641e7360ebe87b0b4ba5629be Mon Sep 17 00:00:00 2001 From: Rasmus Melchior Jacobsen Date: Fri, 20 Oct 2023 16:19:56 +0200 Subject: [PATCH 2/2] Update ci.yaml --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5803aca..8bf8223 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -30,4 +30,4 @@ jobs: - name: Clippy run: cargo clippy --verbose - name: Run tests - run: cargo test --verbose + run: cargo test --all-features --verbose