Skip to content

CI Go by @renovate[bot] 6eae1b402d76d08ff1718d6a7bdebf8ebd5c2c99 #285

CI Go by @renovate[bot] 6eae1b402d76d08ff1718d6a7bdebf8ebd5c2c99

CI Go by @renovate[bot] 6eae1b402d76d08ff1718d6a7bdebf8ebd5c2c99 #285

Workflow file for this run

name: CI Go
on:
pull_request:
paths:
- .github/workflows/ci-go.yml
- '**.go'
- go.*
- Makefile
run-name: CI Go by @${{ github.actor }} ${{ github.sha }}
jobs:
build-test:
runs-on: blacksmith-4vcpu-ubuntu-2404
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: build
run: make build
- name: tidy
run: |
go mod tidy
git diff --exit-code
- name: golangci-lint
uses: golangci/golangci-lint-action@v9
with:
version: v2.4.0
args: ./cmd/... ./pkg/... ./tests/...
- name: test
run: make unit