Skip to content

Merge pull request #7 from kj455/feat/query #47

Merge pull request #7 from kj455/feat/query

Merge pull request #7 from kj455/feat/query #47

Workflow file for this run

name: ci
on:
push:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
- name: Generate mocks
run: |
go install go.uber.org/mock/mockgen@v0.4.0
make mockgen
- name: Test
run: make test
lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.58