chore(deps): update dependency node to v24 #958
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: Conformance test framework validation CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| run-conformance: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: '^1.16' | |
| - name: Vendor dependencies | |
| run: "go mod vendor" | |
| - name: Build and test | |
| run: "go test ./..." | |
| - name: Vet | |
| run: "go vet ./..." | |
| - name: Format | |
| run: "find . -not \\( \\( -wholename './.git' -o -wholename '*/vendor/*' \\) -prune \\) -name '*.go' | xargs gofmt -s -d" | |
| - name: Verify generation | |
| run: "./check_go_generate.sh" | |
| - name: Build client | |
| run: $(cd client && go build -o ../cl) && chmod +x cl | |
| - name: Run conformance tests | |
| run: | | |
| ./cl \ | |
| -type='http' \ | |
| -validate-mapping=false \ | |
| -builder-source='testdata' \ | |
| -builder-target='HTTP' \ | |
| -builder-runtime='go113' \ | |
| -builder-runtime-version='1.13' \ | |
| -builder-url='gcr.io/gae-runtimes/buildpacks/go/builder:latest' |