Skip to content

Drop the unsupported go runtime versions #64

Drop the unsupported go runtime versions

Drop the unsupported go runtime versions #64

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@v3
with:
go-version: ${{ matrix.go-version }}
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- 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@v3
with:
version: latest