Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.

Test with minimal-versions in CI #184

Merged
merged 2 commits into from Jan 5, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Expand Up @@ -37,6 +37,15 @@ jobs:
- uses: dtolnay/rust-toolchain@clippy
- run: cargo clippy --tests -- -Dclippy::all -Dclippy::pedantic

minimal:
name: Minimal versions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@nightly
- run: cargo update -Z minimal-versions
- run: cargo check

fuzz:
name: Fuzz
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Expand Up @@ -13,8 +13,8 @@ keywords = ["yaml", "serde"]
[dependencies]
dtoa = "0.4"
linked-hash-map = "0.5.3"
serde = "1.0.60"
yaml-rust = "0.4"
serde = "1.0.69"
yaml-rust = "0.4.5"

[dev-dependencies]
indoc = "1.0"
Expand Down