build(deps): bump golang.org/x/net from 0.0.0-20191112182307-2180aed22343 to 0.17.0 in /plans/dockercustomize #43
This file contains 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
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
name: Integration Tests | |
concurrency: | |
group: ${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
unit: | |
strategy: | |
fail-fast: false | |
matrix: | |
suite: [ "docker_examples", "local_exec", "local_docker" ] | |
os: [ "ubuntu" ] | |
go: [ "1.16.x" ] | |
env: | |
COVERAGES: "" | |
runs-on: ${{ format('{0}-latest', matrix.os) }} | |
name: "[${{ matrix.suite }}] on ${{ matrix.os }} (go ${{ matrix.go }})" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Go information | |
run: | | |
go version | |
go env | |
- name: Install Testground | |
# Required to get the sync-service and other docker containers used by the daemon. | |
run: | | |
make install | |
- name: Run tests | |
run: | | |
# we disabled `-shuffle=on` until we upgrade past go 1.17 | |
go test -tags "integration,${{ matrix.suite }}" -timeout 20m -parallel 1 -v ./pkg/integration/... |