Feat: Async Batched Backfill (#606) #1217
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 Contribution Terms Agreement | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - '**' | |
| tags-ignore: | |
| - '*.*' | |
| # Cancel in-progress jobs when a new commit is pushed | |
| concurrency: | |
| group: file-licence-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref_name }} | |
| cancel-in-progress: true | |
| jobs: | |
| check-files: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set Up PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: 8.2 | |
| - name: Install dependencies | |
| run: composer update --prefer-dist --no-interaction --ignore-platform-reqs | |
| - name: Check for Contribution Files | |
| shell: bash | |
| run: | | |
| php bin/check-licence.php |