Skip to content

Commit becaed3

Browse files
Merge branch 'develop' into simplify-add-new-type
2 parents 3adb9c1 + 6c7c89c commit becaed3

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/semver_check.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Check Semver
2+
3+
concurrency:
4+
group: ${{ github.workflow }}-${{ github.ref }}
5+
cancel-in-progress: true
6+
7+
on:
8+
pull_request:
9+
branches:
10+
- main
11+
env:
12+
CARGO_TERM_COLOR: always
13+
14+
15+
jobs:
16+
semver-checks:
17+
runs-on: ubuntu-latest
18+
steps:
19+
- name: checkout
20+
uses: actions/checkout@v4
21+
- name: Check semver
22+
uses: obi1kenobi/cargo-semver-checks-action@v2

0 commit comments

Comments
 (0)