Skip to content

Commit

Permalink
Merge pull request #24 from LukasKalbertodt/deemphasize-msrv
Browse files Browse the repository at this point in the history
Deemphasize MSRV by removing check and note from README
  • Loading branch information
LukasKalbertodt committed Jan 15, 2023
2 parents 3e5fef1 + 08e76d3 commit dd8cb76
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 16 deletions.
15 changes: 0 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down

0 comments on commit dd8cb76

Please sign in to comment.