8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d19027e + 3351fc7 commit e334f2aCopy full SHA for e334f2a
.github/workflows/build.yml
@@ -52,3 +52,16 @@ jobs:
52
components: clippy, rustfmt
53
- run: cargo fmt --all --check
54
- run: cargo clippy --workspace --features derive
55
+
56
+ semver-checks:
57
+ name: Semver Checks
58
+ runs-on: ubuntu-latest
59
+ steps:
60
+ - uses: actions/checkout@v4
61
+ - uses: Swatinem/rust-cache@v2
62
+ with:
63
+ shared-key: "semver-checks"
64
+ cache-targets: false
65
+ - run: cargo install cargo-semver-checks --locked
66
+ - name: Check semver
67
+ run: cargo semver-checks check-release
0 commit comments