chore(deps): bump github.com/docker/docker from 28.4.0+incompatible to 28.5.0+incompatible in the go-dependencies group #50
This file contains hidden or 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: Check - CI | |
on: | |
push: | |
branches: [ master ] | |
paths: | |
- '**/*.go' | |
- 'go.mod' | |
- 'go.sum' | |
- 'Makefile' | |
- '.github/workflows/**' | |
- 'tests/**' | |
pull_request: | |
branches: [ master ] | |
paths: | |
- '**/*.go' | |
- 'go.mod' | |
- 'go.sum' | |
- 'Makefile' | |
- '.github/workflows/**' | |
- 'tests/**' | |
concurrency: | |
group: "go-lint-build-${{ github.head_ref || github.ref }}" | |
cancel-in-progress: true | |
jobs: | |
lint-and-test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0 | |
with: | |
go-version: '1.24' | |
- name: Install golangci-lint | |
run: | | |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v2.3.0 | |
- name: Run build | |
run: make build | |
- name: Run unit tests | |
run: make test | |
- name: Run linting | |
run: make lint |