This repository has been archived by the owner on Dec 13, 2024. It is now read-only.
Update module github.com/docker/cli to v25.0.4+incompatible (#20) #64
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: build-tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
check-latest: true | |
- run: make deps | |
- run: make checks | |
- run: make lint | |
- run: make build | |
- run: make test | |
timeout-minutes: 30 |