Skip to content

Commit 19635b5

Browse files
committed
Commit Cargo.lock
1 parent b39ab9d commit 19635b5

File tree

3 files changed

+1662
-6
lines changed

3 files changed

+1662
-6
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ jobs:
2626
- uses: dtolnay/rust-toolchain@master
2727
with:
2828
toolchain: ${{ matrix.rust }}
29-
- run: cargo check --all-targets
30-
- run: cargo test --all-features -- --nocapture
29+
- run: cargo check --locked --all-targets
30+
- run: cargo test --locked --all-features -- --nocapture
3131

3232
msrv:
3333
runs-on: ubuntu-latest
@@ -37,7 +37,7 @@ jobs:
3737
- uses: dtolnay/rust-toolchain@master
3838
with:
3939
toolchain: 1.75.0
40-
- run: cargo test -p bb8
40+
- run: cargo test -p bb8 --locked
4141

4242
lint:
4343
runs-on: ubuntu-latest
@@ -47,7 +47,7 @@ jobs:
4747
with:
4848
components: rustfmt, clippy
4949
- run: cargo fmt -- --check
50-
- run: cargo clippy --all-features --all-targets -- -D warnings
50+
- run: cargo clippy --locked --all-features --all-targets -- -D warnings
5151

5252
audit:
5353
runs-on: ubuntu-latest
@@ -66,7 +66,7 @@ jobs:
6666
- name: Install cargo-llvm-cov
6767
uses: taiki-e/install-action@cargo-llvm-cov
6868
- name: Generate code coverage
69-
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
69+
run: cargo llvm-cov --locked --all-features --workspace --lcov --output-path lcov.info
7070
- name: Upload coverage to Codecov
7171
uses: codecov/codecov-action@v5
7272
with:

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11

22
/target/
33
**/*.rs.bk
4-
Cargo.lock
54
*~
65
.idea/

0 commit comments

Comments
 (0)