Skip to content

chore: move linters to all_test.go #10

chore: move linters to all_test.go

chore: move linters to all_test.go #10

Workflow file for this run

name: Client Generator
on: [push]
jobs:
build:
runs-on: ubuntu-24.04
strategy:
matrix:
go-version: [ '1.23' ]
defaults:
run:
working-directory: generator
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache-dependency-path: |
generator/go.sum
- name: Display Go version
run: go version
- run: go mod tidy
- run: go test ./...