fix: add logging to test func, to try to debug php conformance errors… #297
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: Buildpack Integration Test Workflow Validation | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| validate-workflow: | |
| strategy: | |
| matrix: | |
| builder-url: ['gcr.io/gae-runtimes/buildpacks/go/builder:latest', ''] | |
| uses: ./.github/workflows/buildpack-integration-test.yml | |
| with: | |
| builder-runtime: 'go120' | |
| builder-runtime-version: '1.20' | |
| http-builder-source: 'testdata' | |
| http-builder-target: 'HTTP' | |
| cloudevent-builder-source: '' | |
| cloudevent-builder-target: '' | |
| builder-url: ${{ matrix.builder-url }} | |
| conformance-client-version: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }} |