From b95f0f30b609a509072892712cd51151041322c0 Mon Sep 17 00:00:00 2001 From: Predrag Gruevski <2348618+obi1kenobi@users.noreply.github.com> Date: Fri, 12 Jan 2024 19:55:44 -0500 Subject: [PATCH] Drop testing on Rust 1.71 and 1.72 due to rustdoc bug (#316) The bug reproduced in #300 affects Rust versions older than 1.73, and will never be fixed. Our tests will always be broken on Rust older than 1.73, so we shouldn't bother testing on it anymore. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7b35762..9e788cd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,7 +66,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - toolchain: ["1.71", "1.72", "1.73"] + toolchain: ["1.73"] steps: - name: Checkout uses: actions/checkout@v4