Skip to content

Commit

Permalink
Merge pull request #381 from mulkieran/cargo-semver-checks
Browse files Browse the repository at this point in the history
Run semver checks on nightly
  • Loading branch information
mulkieran authored Nov 18, 2024
2 parents 3cf7f7f + 412e660 commit 233d2fe
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,3 +76,19 @@ jobs:
COMPARE_FEDORA_VERSIONS=./compare_fedora_versions MANIFEST_PATH=../../Cargo.toml FEDORA_RELEASE=f40 IGNORE_ARGS="--ignore-high=libcryptsetup-rs-sys --ignore-high=loopdev" make -f ../../Makefile check-fedora-versions
COMPARE_FEDORA_VERSIONS=./compare_fedora_versions MANIFEST_PATH=../../Cargo.toml FEDORA_RELEASE=f39 IGNORE_ARGS="--ignore-high=libcryptsetup-rs-sys --ignore-high=loopdev" make -f ../../Makefile check-fedora-versions
working-directory: ./ci/dependency_management

semver-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install dependencies
run: |
sudo apt-get -q update
sudo apt-get -y install libcryptsetup-dev
- name: Do semantic version checks
uses: obi1kenobi/cargo-semver-checks-action@v2
with:
verbose: true
rust-toolchain: 1.82.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN

0 comments on commit 233d2fe

Please sign in to comment.