Skip to content

Commit

Permalink
ci: add job to run cargo-semver-checks
Browse files Browse the repository at this point in the history
  • Loading branch information
c-git committed Feb 1, 2024
1 parent 20adebd commit 72689f6
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/semver_check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Check Semver

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
pull_request:
branches:
- main
env:
CARGO_TERM_COLOR: always


jobs:
semver-checks:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: Check semver
uses: obi1kenobi/cargo-semver-checks-action@v2

0 comments on commit 72689f6

Please sign in to comment.