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.
1 parent d19027e commit 3351fc7Copy full SHA for 3351fc7
.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