Skip to content

Merge pull request #20 from bbsakura/chore/github-workflows #11

Merge pull request #20 from bbsakura/chore/github-workflows

Merge pull request #20 from bbsakura/chore/github-workflows #11

name: lint_and_test
on:
push:
jobs:
golangci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ^1.21
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.59.1
- name: go mod tidy and install
run: |
go mod tidy
make install-go-tools
- name: build
run: make build
- name: testing
run: make test