Skip to content

Commit

Permalink
add semver check
Browse files Browse the repository at this point in the history
  • Loading branch information
PSeitz committed Sep 8, 2023
1 parent 23b05b0 commit 8b5a5c3
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,14 @@ jobs:
run: for fuzz_test in `cargo fuzz list`; do cargo +nightly fuzz run $fuzz_test -- -max_total_time=30 || exit 1; done
- name: Run fuzz tests (unsafe)
run: for fuzz_test in `cargo fuzz list`; do cargo +nightly fuzz run $fuzz_test --no-default-features -- -max_total_time=30 || exit 1; done

semver:
name: semver
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check semver
uses: obi1kenobi/cargo-semver-checks-action@v2
with:
rust-toolchain: ${{ env.rust_stable }}
release-type: minor

0 comments on commit 8b5a5c3

Please sign in to comment.