File tree 2 files changed +8
-1
lines changed
2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 91
91
steps :
92
92
- uses : actions/checkout@v3
93
93
with :
94
- fetch-depth : 0 # make `git diff` work
94
+ fetch-depth : 0
95
95
- run : rustup update stable && rustup default stable
96
+ - name : Install cargo-semver-checks
97
+ run : |
98
+ mkdir installed-bins
99
+ curl -Lf https://github.com/obi1kenobi/cargo-semver-checks/releases/download/v0.22.1/cargo-semver-checks-x86_64-unknown-linux-gnu.tar.gz \
100
+ | tar -xz --directory=./installed-bins
101
+ echo `pwd`/installed-bins >> $GITHUB_PATH
96
102
- run : ci/validate-version-bump.sh
97
103
98
104
test :
Original file line number Diff line number Diff line change @@ -20,3 +20,4 @@ echo "Base branch is $base_sha"
20
20
echo " Current head is $head_sha "
21
21
22
22
cargo bump-check --baseline-rev " $base_sha "
23
+ cargo semver-checks --workspace --baseline-rev " $base_sha "
You can’t perform that action at this time.
0 commit comments