Skip to content
26 changes: 26 additions & 0 deletions .github/workflows/semver-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Semver checks

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0

jobs:
semver:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
# cargo-semver-checks needs the full git history to compare versions
fetch-depth: 0

- name: Check semver compatibility
uses: obi1kenobi/cargo-semver-checks-action@v2
Comment thread Fixed
Comment thread Fixed
Comment thread Fixed
Comment thread Fixed
Comment thread Fixed
Comment thread Dismissed
with:
# Check all packages in the workspace
package: --workspace
Comment thread Fixed
Loading