Skip to content

Commit aef2a33

Browse files
committed
Check for breaking changes on CI
1 parent 313662b commit aef2a33

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/build.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,3 +220,16 @@ jobs:
220220
- uses: actions-rs/cargo@v1
221221
with:
222222
command: clippy
223+
224+
semver-checks:
225+
name: Semver Checks
226+
runs-on: ubuntu-latest
227+
steps:
228+
- uses: actions/checkout@v3
229+
- uses: Swatinem/rust-cache@v2
230+
with:
231+
shared-key: "semver-checks"
232+
cache-targets: false
233+
- run: cargo install cargo-semver-checks --locked
234+
- name: Check semver
235+
run: cargo semver-checks check-release

0 commit comments

Comments
 (0)