Skip to content

Commit

Permalink
validate-cargo-lock.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
laruh committed Dec 28, 2024
1 parent 15919ad commit 246ca18
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/validate-cargo-lock.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Validate Cargo.lock
on: [push]

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
validate-cargo-lock:
name: Validate Cargo.lock Consistency
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Install Rust toolchain
run: |
rustup toolchain install nightly-2023-06-01 --no-self-update --profile=minimal
rustup default nightly-2023-06-01
- name: Validate Cargo.lock
run: |
echo "Checking if Cargo.lock is up-to-date..."
cargo update -w --locked
shell: bash

0 comments on commit 246ca18

Please sign in to comment.