From fa571b9f18c1bb954702cd0e25ba72c756c07fce Mon Sep 17 00:00:00 2001 From: Tyler Sengia Date: Wed, 27 Dec 2023 23:43:06 -0500 Subject: [PATCH] Use --locked in lint, test, and check jobs --- .github/workflows/lint_fmt_test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint_fmt_test.yml b/.github/workflows/lint_fmt_test.yml index 9991df9..448e36c 100644 --- a/.github/workflows/lint_fmt_test.yml +++ b/.github/workflows/lint_fmt_test.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - run: cargo check + - run: cargo check --locked fmt: name: Formatter Check @@ -27,7 +27,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - run: cargo clippy --no-deps + - run: cargo clippy --no-deps --locked check-bump: name: Check Version Bump @@ -49,4 +49,4 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - run: cargo test \ No newline at end of file + - run: cargo test --locked \ No newline at end of file