Skip to content

feat: upgrade the minimum go version #376

feat: upgrade the minimum go version

feat: upgrade the minimum go version #376

Workflow file for this run

name: Go Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref}}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
cache-dependency-path: go.sum
go-version-file: go.mod
check-latest: true
- name: Linter
run: make lint-prepare && make lint
- name: Test
run: make test