Skip to content

Bump docker/build-push-action from 7 to 7.1.0 #55

Bump docker/build-push-action from 7 to 7.1.0

Bump docker/build-push-action from 7 to 7.1.0 #55

Workflow file for this run

name: "Checks"
on:
pull_request:
push:
branches:
- main
jobs:
build:
name: "Build and test"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: "go.mod"
- name: Run unit tests
run: go test -v ./...
- name: Build binaries
run: go install ./cmd/...
precommit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: "go.mod"
- uses: j178/prek-action@v2.0.3
with:
extra-args: --all-files --stage=manual
- uses: golangci/golangci-lint-action@v9
with:
version: v2.11.3
- name: generate command strings
run: go generate ./... && git diff --exit-code