Fixing semver checks again #27
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: semver-checks | |
# Trigger when a PR is opened or changed | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- edited | |
- synchronize | |
- reopened | |
env: | |
CARGO_TERM_COLOR: always | |
RUST_BACKTRACE: 1 | |
jobs: | |
check_if_pr_breaks_semver: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v4 | |
name: checkout full rep | |
with: | |
fetch-depth: 0 | |
- name: Install minimal stable | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: default | |
toolchain: stable | |
override: true | |
- uses: Swatinem/rust-cache@v2 | |
- name: Install cargo-semver-checks | |
shell: bash | |
run: | | |
cargo install cargo-semver-checks --locked | |
- name: Run check | |
shell: bash | |
run: | | |
cargo semver-checks --all-features --baseline-rev ${{ github.event.pull_request.base.sha }} | |
- name: On Failure | |
if: failure() | |
uses: actions-ecosystem/action-add-labels@v1 | |
with: | |
labels: breaking-change | |
- name: On Success | |
if: success() | |
shell: bash | |
run: | | |
echo "Checks succeed" |