Skip to content

Add wire to make generate #1666

Add wire to make generate

Add wire to make generate #1666

Workflow file for this run

name: go
on:
push:
branches:
- master
paths:
- .github/workflows/go.yaml
- pkg/**
- tools/**
- go.*
tags:
- v*
pull_request:
branches:
- master
paths:
- .github/workflows/go.yaml
- pkg/**
- tools/**
- go.*
jobs:
check:
uses: int128/go-workflows/.github/workflows/[email protected]
with:
go-version: 1.23.0
golangci-lint-version: v1.60.1
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.23.0
- run: go test -v -race ./...
generate:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: tools/go.mod
cache-dependency-path: tools/go.sum
- run: make generate
- uses: int128/update-generated-files-action@v2