Skip to content

bump: 3.1.1

bump: 3.1.1 #32

Workflow file for this run

name: go
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.25.10'
cache: true
- uses: actions/cache@v4
with:
path: ~/go/bin
key: ${{ runner.os }}-go-tools-sqlc-v1.31.1-mockgen-0.6.0
- run: make bin/sqlc-gen-go.wasm
- run: go install github.com/sqlc-dev/sqlc/cmd/sqlc@v1.31.1
- run: go install go.uber.org/mock/mockgen@v0.6.0
- run: make generate-example
- run: make test