build(deps): bump github.com/docker/docker from 1.4.2-0.20200206084213-b5fc6ea92cde to 24.0.9+incompatible #53
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/... |