Skip to content

CI Go by @renovate[bot] 8f2dc3c7ad94e13d5797bd6d2775a6248217b9e4 #230

CI Go by @renovate[bot] 8f2dc3c7ad94e13d5797bd6d2775a6248217b9e4

CI Go by @renovate[bot] 8f2dc3c7ad94e13d5797bd6d2775a6248217b9e4 #230

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