Bump the all-dependencies group with 10 updates #507
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: PR Check | |
| on: | |
| pull_request: | |
| branches: [ main, release/** ] | |
| paths-ignore: | |
| - '**.md' | |
| jobs: | |
| tests: | |
| uses: ./.github/workflows/tests.yml | |
| # Aggregate gate so a single "build" status check (required by branch | |
| # protection) reflects the result of all parallel test jobs. | |
| build: | |
| needs: tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: All tests passed | |
| run: echo "All database tests passed." |