Skip to content

Merge pull request #29 from moznion/update_github_actions_actions #69

Merge pull request #29 from moznion/update_github_actions_actions

Merge pull request #29 from moznion/update_github_actions_actions #69

Workflow file for this run

name: Go
on: [push]
jobs:
build:
name: Test
strategy:
matrix:
go-version: [1.21.x, 1.22.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Install go toolchains
run: |
go install golang.org/x/tools/cmd/goimports@latest
- name: Do test
run: make check-ci
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest