Bump github.com/docker/docker from 23.0.3+incompatible to 24.0.7+incompatible #74
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: Go | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
pre_commit_check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: set up go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.18 | |
# - name: golangci lint | |
# uses: golangci/golangci-lint-action@v3 | |
# with: | |
# version: v1.42.0 | |
# args: --build-tags="containers_image_openpgp exclude_graphdriver_devicemapper exclude_graphdriver_btrfs" --timeout 5m | |
- name: go test | |
run: make test | |
- name: go build | |
run: make build |