diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 91336a5..f124740 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,18 +22,3 @@ jobs: - run: cargo build - run: cargo test - run: cargo doc - - check-with-msrv: - name: 'Build & test with Rust 1.60' - runs-on: ubuntu-20.04 - steps: - - uses: actions/checkout@v3 - - name: Install Rust 1.60 - uses: actions-rs/toolchain@v1 - with: - toolchain: 1.60.0 - override: true - profile: minimal - - run: cargo build - - run: cargo test - - run: cargo doc diff --git a/README.md b/README.md index 375a936..7d844de 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,6 @@ Write your own test harness that looks and behaves like the built-in test harnes This is a simple and small testing framework that mimics the original `libtest`. That means: all output looks pretty much like `cargo test` and most CLI arguments are understood and used. With that plumbing work out of the way, your test runner can focus on the actual testing. -(MSRV: 1.60) See [**the documentation**](https://docs.rs/libtest-mimic) or [the `examples/` folder](/examples) for more information.