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 bfde94b commit 5c35f28Copy full SHA for 5c35f28
.github/workflows/CI.yml
@@ -18,6 +18,7 @@ jobs:
18
- msrv
19
- miri
20
- features
21
+ - semver
22
- doc
23
steps:
24
- run: exit 0
@@ -115,6 +116,18 @@ jobs:
115
116
117
- run: cargo hack --no-dev-deps check --feature-powerset --depth 2
118
119
+ semver:
120
+ name: semver
121
+ runs-on: ubuntu-latest
122
+ steps:
123
+ - uses: actions/checkout@v4
124
+ - name: Check semver
125
+ uses: obi1kenobi/cargo-semver-checks-action@v2
126
+ with:
127
+ feature-group: only-explicit-features
128
+ features: full
129
+ release-type: minor
130
+
131
doc:
132
name: Build docs
133
needs: [style, test]
0 commit comments