Bump test-suites/schema-test-suite from 15e4505 to 02a0d89
#681
Workflow file for this run
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: "Run tests for PR" | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - 'README.md' | |
| - 'changelog_config.json' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| store-pr: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Save PR number | |
| env: | |
| PR_NUMBER: ${{ github.event.number }} | |
| run: | | |
| mkdir -p ./pr | |
| echo $PR_NUMBER > ./pr/pr_number | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: pr_number | |
| path: pr/ | |
| check-pr: | |
| uses: ./.github/workflows/build-and-test.yml | |
| with: | |
| collect-code-coverage: true |