Bump github.com/docker/docker from 24.0.9+incompatible to 25.0.6+incompatible #243
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
name: Integration Test | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: ./go.mod | |
- name: Build | |
run: | | |
go version | |
CGO_ENABLED=0 go build -C src/updateNetwork -v . | |
CGO_ENABLED=0 go build -C test -v . | |
CGO_ENABLED=0 go build -C upgrade -v . | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: ./go.mod | |
- name: run tests | |
run: | | |
go vet ./... | |
go test ./... -v | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: setup go | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: ./go.mod | |
- name: lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
args: --timeout=5m | |