build(deps): bump github.com/cloudfoundry/bosh-utils from 0.0.633 to 0.0.636 #204
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: | |
| workflow_call: | |
| pull_request_target: | |
| push: | |
| branches: | |
| - main | |
| concurrency: | |
| group: dav-integration | |
| cancel-in-progress: false | |
| jobs: | |
| gate: | |
| name: Approval gate (fork PRs only) | |
| runs-on: ubuntu-latest | |
| if: > | |
| github.event_name == 'pull_request_target' && | |
| github.event.pull_request.head.repo.full_name != github.repository | |
| environment: fork-pr-integration-test | |
| steps: | |
| - run: echo "Fork PR approved, proceeding with integration tests" | |
| dav-integration: | |
| name: DAV Integration Tests | |
| runs-on: ubuntu-latest | |
| needs: [gate] | |
| if: always() && (needs.gate.result == 'success' || needs.gate.result == 'skipped') | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v7 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha || github.sha }} | |
| allow-unsafe-pr-checkout: true | |
| - 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/ |