mirror of
https://github.com/crate-ci/typos.git
synced 2025-01-10 16:54:51 -05:00
chore(ci): Ensure latest deps are good
This commit is contained in:
parent
67eb1d9e3d
commit
ba76b8bd91
1 changed files with 19 additions and 0 deletions
19
.github/workflows/rust-next.yml
vendored
19
.github/workflows/rust-next.yml
vendored
|
@ -38,3 +38,22 @@ jobs:
|
||||||
run: cargo test --workspace --all-features
|
run: cargo test --workspace --all-features
|
||||||
- name: No-default features
|
- name: No-default features
|
||||||
run: cargo test --workspace --no-default-features
|
run: cargo test --workspace --no-default-features
|
||||||
|
latest:
|
||||||
|
name: "Check latest dependencies"
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- name: Install Rust
|
||||||
|
uses: dtolnay/rust-toolchain@stable
|
||||||
|
with:
|
||||||
|
toolchain: stable
|
||||||
|
- uses: Swatinem/rust-cache@v2
|
||||||
|
- name: Update dependencues
|
||||||
|
run: cargo update
|
||||||
|
- name: Default features
|
||||||
|
run: cargo test --workspace --all-targets
|
||||||
|
- name: All features
|
||||||
|
run: cargo test --workspace --all-targets --all-features
|
||||||
|
- name: No-default features
|
||||||
|
run: cargo test --workspace --all-targets --no-default-features
|
||||||
|
|
Loading…
Reference in a new issue