Skip to content

Commit

Permalink
Validate Cargo.lock
Browse files Browse the repository at this point in the history
  • Loading branch information
laruh committed Dec 27, 2024
1 parent 7464be1 commit 72bfb92
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/fmt-and-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ jobs:
- name: Build cache
uses: ./.github/actions/build-cache

- name: Backup Cargo.lock
run: cp Cargo.lock Cargo.lock.bak

- name: fmt check
# Format checks aren't OS dependant.
if: matrix.os == 'ubuntu-latest'
Expand All @@ -37,6 +40,14 @@ jobs:
- name: clippy lint
run: cargo clippy --all-targets --all-features -- --D warnings

- name: Validate Cargo.lock
run: |
if ! diff Cargo.lock Cargo.lock.bak; then
echo "Error: Cargo.lock has changed during the workflow. Ensure Cargo.lock is up-to-date and committed."
exit 1
fi
shell: bash

wasm-lint:
name: Wasm Lint Checks
timeout-minutes: 45
Expand Down

0 comments on commit 72bfb92

Please sign in to comment.