Skip to content

Commit d478c21

Browse files
committed
Add SemVer compatibility checks to CI
We recently introduced release branches that need to remain backwards compatible. However, even small changes to item visibility during backporting fixes might introduce SemVer violations (see https://doc.rust-lang.org/cargo/reference/semver.html#change-categories for a list of changs that would be considered major/minor). To make sure we don't accidentally introduce such changes in the backports, we here add a new `semver-checks` CI job that utilizes `cargo-semver-checks` (https://github.com/obi1kenobi/cargo-semver-checks), and have it run on any push or pull requests towards anything else but `main`/`master` (i.e., all feature branches to come).
1 parent 86308e1 commit d478c21

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/semver.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: SemVer checks
2+
on:
3+
push:
4+
branches-ignore:
5+
- master
6+
- main
7+
pull_request:
8+
branches-ignore:
9+
- master
10+
- main
11+
12+
jobs:
13+
semver-checks:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout source code
17+
uses: actions/checkout@v4
18+
- name: Install Rust stable toolchain
19+
run: |
20+
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile=minimal --default-toolchain stable
21+
rustup override set stable
22+
- name: Check SemVer with default features
23+
uses: obi1kenobi/cargo-semver-checks-action@v2
24+
feature-group: default-features

0 commit comments

Comments
 (0)