Skip to content

Commit

Permalink
ci: Verify no uncommitted changes upon build
Browse files Browse the repository at this point in the history
such as an unwanted update of Cargo.lock induced by a dependency bump in Cargo.toml without
committed reflection in the lock file.
  • Loading branch information
AiyionPrime committed Jul 30, 2024
1 parent 47e156f commit b65c0a2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,7 @@ jobs:
cacheFrom: ghcr.io/vorausrobotik/voraus-ros-bridge-dev
runCmd: cargo ament-build --install-base install/voraus_bridge -- --release --verbose
push: never
- name: Report build induced changes via git
run: git diff
- name: Verify no build induced changes in cargo.lock
run: git diff --quiet -- Cargo.lock

0 comments on commit b65c0a2

Please sign in to comment.