Skip to content

build(deps): bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1 #480

build(deps): bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1

build(deps): bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1 #480

Workflow file for this run

name: Conformance test framework validation CI
on:
push:
branches:
- main
pull_request:
jobs:
run-conformance:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
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'