Update cachix install nix action (#247) #12
This file contains hidden or 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: check for breaking changes | |
| on: | |
| push: | |
| jobs: | |
| check-for-breaking-changes: | |
| name: check for breaking changes | |
| runs-on: ubuntu-latest | |
| env: | |
| CARGO_NET_GIT_FETCH_WITH_CLI: "true" | |
| RUSTFLAGS: "-D warnings" # fail on warnings | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 # get all the branches as we need to diff against current branch and main | |
| - name: check for breaking changes | |
| run: | | |
| ./scripts/check-schema-breaking-changes.sh |