mirror of
https://github.com/tun2proxy/tun2proxy.git
synced 2025-04-20 13:59:10 +00:00
Check semver script
This commit is contained in:
parent
e879599e6b
commit
06ed994655
1 changed files with 16 additions and 1 deletions
15
.github/workflows/rust.yml
vendored
15
.github/workflows/rust.yml
vendored
|
@ -37,3 +37,18 @@ jobs:
|
||||||
- name: Abort on error
|
- name: Abort on error
|
||||||
if: ${{ failure() }}
|
if: ${{ failure() }}
|
||||||
run: echo "Some of jobs failed" && false
|
run: echo "Some of jobs failed" && false
|
||||||
|
|
||||||
|
semver:
|
||||||
|
name: Check semver
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: actions-rs/toolchain@v1
|
||||||
|
with:
|
||||||
|
profile: minimal
|
||||||
|
toolchain: stable
|
||||||
|
override: true
|
||||||
|
- uses: obi1kenobi/cargo-semver-checks-action@v2
|
||||||
|
|
Loading…
Add table
Reference in a new issue