build(deps): bump google.golang.org/api from 0.290.0 to 0.291.0 in the google-cloud group across 1 directory #167
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: DAV Integration Tests | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| pr_ref: | |
| description: 'SHA of the PR head commit (for fork PRs)' | |
| required: false | |
| default: '' | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| workflow_call: | |
| concurrency: | |
| group: dav-integration | |
| cancel-in-progress: false | |
| jobs: | |
| dav-integration: | |
| name: DAV Integration Tests | |
| runs-on: ubuntu-latest | |
| # Skip fork PRs; run for all other triggers (push, dispatch, workflow_call, schedule, etc.) | |
| if: > | |
| github.event_name != 'pull_request' || | |
| github.event.pull_request.head.repo.full_name == github.repository | |
| permissions: | |
| statuses: write | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v7 | |
| with: | |
| ref: ${{ inputs.pr_ref || github.sha }} | |
| - name: Set up Go | |
| uses: actions/setup-go@v7 | |
| with: | |
| go-version-file: go.mod | |
| - name: Install Ginkgo | |
| run: go install github.com/onsi/ginkgo/v2/ginkgo@latest | |
| - name: Run DAV Integration Tests | |
| run: ginkgo -r dav/integration/ | |
| - name: Report fork PR status | |
| if: always() && inputs.pr_ref != '' | |
| uses: ./.github/actions/report-fork-status | |
| with: | |
| pr_ref: ${{ inputs.pr_ref }} | |
| name: DAV Integration Tests |