mirror of
https://github.com/ratatui-org/ratatui
synced 2024-11-10 07:04:17 +00:00
chore(ci): integrate cargo-semver-checks (#1166)
> [`cargo-semver-checks`](https://github.com/obi1kenobi/cargo-semver-checks): Lint your crate API changes for semver violations.
This commit is contained in:
parent
94328a2977
commit
82b70fd329
1 changed files with 16 additions and 0 deletions
16
.github/workflows/check-semver.yml
vendored
Normal file
16
.github/workflows/check-semver.yml
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
name: Check Semver
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
check-semver:
|
||||
name: Check semver
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout the repository
|
||||
uses: actions/checkout@v4
|
||||
- name: Check semver
|
||||
uses: obi1kenobi/cargo-semver-checks-action@v2
|
Loading…
Reference in a new issue