Skip to content

CI Go by @renovate[bot] 82b4c91e915b2c4b229f80468f8cabe7cc4516bb #227

CI Go by @renovate[bot] 82b4c91e915b2c4b229f80468f8cabe7cc4516bb

CI Go by @renovate[bot] 82b4c91e915b2c4b229f80468f8cabe7cc4516bb #227

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: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: build
run: make build
- name: tidy
run: |
go mod tidy
git diff --exit-code
- name: lint
run: make lint-go
- name: test
run: make unit