Skip to content

Commit

Permalink
Add semver check
Browse files Browse the repository at this point in the history
  • Loading branch information
Finomnis committed Feb 7, 2023
1 parent 5653b45 commit fc2b2da
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ jobs:
- test-unstable
- miri
- asan
- semver
- cross-check
- cross-test
- no-atomic-u64
Expand Down Expand Up @@ -230,6 +231,20 @@ jobs:
# Ignore `trybuild` errors as they are irrelevant and flaky on nightly
TRYBUILD: overwrite

semver:
name: semver
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust ${{ env.rust_stable }}
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.rust_stable }}
- name: Install cargo-semver-checks
run: cargo install cargo-semver-checks --locked
- uses: Swatinem/rust-cache@v2
- run: cargo semver-checks check-release

cross-check:
name: cross-check
runs-on: ubuntu-latest
Expand Down

0 comments on commit fc2b2da

Please sign in to comment.