Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
uses: dtolnay/rust-toolchain@nightly

- name: cargo doc
run: cargo doc --no-deps --all-features
run: cargo doc --no-deps --all-features --locked
env:
RUSTDOCFLAGS: --cfg docsrs

Expand All @@ -130,7 +130,7 @@ jobs:
uses: taiki-e/install-action@cargo-hack

- name: cargo hack
run: cargo hack --feature-powerset check
run: cargo hack --feature-powerset check --locked

deny:
# cargo-deny checks licenses, advisories, sources, and bans for
Expand All @@ -152,7 +152,7 @@ jobs:
log-level: warn
manifest-path: ./Cargo.toml
command: check
arguments: --all-features
arguments: --all-features --locked

msrv:
# check that we can build using the minimal rust version that is specified by this crate
Expand Down Expand Up @@ -190,7 +190,7 @@ jobs:
toolchain: ${{ matrix.msrv }}

- name: cargo +${{ matrix.msrv }} check
run: cargo check
run: cargo check --locked

test:
# run existing tests
Expand All @@ -209,4 +209,4 @@ jobs:
uses: dtolnay/rust-toolchain@stable

- name: cargo test
run: cargo test
run: cargo test --locked
2 changes: 1 addition & 1 deletion .github/workflows/nostd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ jobs:
run: echo ${{ env.TOKEN }}

- name: cargo check
run: cargo check --target ${{ matrix.target }} --no-default-features
run: cargo check --target ${{ matrix.target }} --no-default-features --locked
4 changes: 2 additions & 2 deletions .github/workflows/rolling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: cargo install cargo-hack
uses: taiki-e/install-action@cargo-hack
- name: cargo check
run: cargo check -F full
run: cargo check -F full --locked

msrv:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -60,4 +60,4 @@ jobs:
with:
toolchain: ${{ matrix.msrv }}
- name: cargo +${{ matrix.msrv }} check
run: cargo check -F full
run: cargo check -F full --locked
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
/target
/Cargo.lock
Loading