Skip to content

Commit b2115f9

Browse files
authored
Merge pull request #9 from EspressoSystems/feat/semver-check
Check semver compatibility to force appropriate version bumps
2 parents 4c2afa1 + 8130438 commit b2115f9

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
@@ -94,12 +94,25 @@ jobs:
9494
publish_dir: ./target/doc
9595
cname: base64-bytes.docs.espressosys.com
9696

97+
semver-check:
98+
runs-on: ubuntu-latest
99+
steps:
100+
- uses: actions/checkout@v4
101+
name: Checkout Repository
102+
103+
- uses: Swatinem/rust-cache@v2
104+
name: Enable Rust Caching
105+
106+
- name: Check semver
107+
uses: obi1kenobi/cargo-semver-checks-action@v2
108+
97109
publish:
98110
needs:
99111
- build
100112
- test
101113
- lint
102114
- docs
115+
- semver-check
103116
runs-on: ubuntu-latest
104117
steps:
105118
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)