Skip to content

Commit

Permalink
Add issuer lockfile to up-to-date CI check (#2098)
Browse files Browse the repository at this point in the history
* Add issuer lockfile to up-to-date CI check

The issuer Cargo.lock was so far not checked by CI.
This allowed checking in out-of-sync Cargo.lock / .toml files.

* Update lockfile to satisfy CI check
  • Loading branch information
Frederik Rothenberger authored Dec 4, 2023
1 parent ece8744 commit 90a719d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,10 @@ jobs:
- uses: actions/checkout@v3
- uses: ./.github/actions/bootstrap

- name: Cargo Lockfile Check
# fails if lockfile is out of date
# https://users.rust-lang.org/t/check-if-the-cargo-lock-is-up-to-date-without-building-anything/91048/5
- name: Cargo Lockfile Check
run: cargo update --workspace --locked
- name: Cargo Issuer Lockfile Check
working-directory: demos/vc_issuer
run: cargo update --workspace --locked
4 changes: 2 additions & 2 deletions demos/vc_issuer/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 90a719d

Please sign in to comment.