Clippy: fix warning in release build of test-validator (#5892) #3
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: crate-check | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| paths: | |
| - "**/Cargo.toml" | |
| - ".github/workflows/crate-check.yml" | |
| - "./ci/check-crates.sh" | |
| jobs: | |
| check: | |
| name: crate check | |
| if: github.repository == 'anza-xyz/agave' | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Get commit range (push) | |
| if: ${{ github.event_name == 'push' }} | |
| run: | | |
| echo "COMMIT_RANGE=${{ github.event.before }}..$GITHUB_SHA" >> $GITHUB_ENV | |
| - name: Get commit range (pull_request) | |
| if: ${{ github.event_name == 'pull_request' }} | |
| run: | | |
| echo "COMMIT_RANGE=${{ github.event.pull_request.base.sha }}..${{ github.event.pull_request.head.sha }}" >> $GITHUB_ENV | |
| - name: Setup Rust | |
| shell: bash | |
| run: | | |
| source ci/rust-version.sh stable | |
| rustup default $rust_stable | |
| - name: Install toml-cli | |
| shell: bash | |
| run: | | |
| cargo install toml-cli | |
| - run: | | |
| ci/check-crates.sh | |
| error_reporting: | |
| needs: | |
| - check | |
| if: failure() && github.event_name == 'push' | |
| uses: ./.github/workflows/error-reporting.yml | |
| secrets: | |
| WEBHOOK: ${{ secrets.SLACK_ERROR_REPORTING_WEBHOOK }} |