Skip to content

Commit

Permalink
CI: Run check-for-api-changes
Browse files Browse the repository at this point in the history
No point having the script if we don't run it.
  • Loading branch information
tcharding committed Jan 25, 2024
1 parent 0bd55be commit 864aee2
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,3 +102,18 @@ jobs:
run: cargo install cross --locked
- name: run cross test
run: cross test --target s390x-unknown-linux-gnu

API:
name: Check for changes to the public API
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout Crate
uses: actions/checkout@v3
- name: Checkout Toolchain
uses: dtolnay/rust-toolchain@nightly
- name: Install cargo-public-api
run: cargo install --locked cargo-public-api
- name: Running API checker script
run: ./contrib/check-for-api-changes.sh

0 comments on commit 864aee2

Please sign in to comment.