Merge pull request #1550 from proofconstruction/check-lockfile-sync

chore(ci): add action step to check if lockfile is synced
This commit is contained in:
liv 2023-06-12 11:49:21 +02:00 committed by GitHub
commit dca6e869df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -14,6 +14,8 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Fetch & maybe update Cargo.lock
run: cargo fetch --locked
- name: Build - name: Build
run: cargo build --verbose run: cargo build --verbose
- name: Run tests - name: Run tests