| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- 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@v6
- 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 }}
|