ci: fix test caching, improve workflow structure and test grouping #9
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 large files | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - 'release/**' | |
| types: [opened, reopened, synchronize, ready_for_review] | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| check: | |
| if: ${{ !github.event.pull_request.draft }} | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| filter: blob:none | |
| - name: Check for large files in PR | |
| run: make check-large-files BASE=${{ github.event.pull_request.base.sha }} |