Skip to content

chore: upgrade golang packages and github worfklow #54

chore: upgrade golang packages and github worfklow

chore: upgrade golang packages and github worfklow #54

Workflow file for this run

name: Go
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.20.7
- 1.21.0
steps:
- uses: actions/[email protected]
- name: Setup Go ${{ matrix.go-version }}
uses: actions/[email protected]
with:
go-version: ${{ matrix.go-version }}
- name: Display Go version
run: go version
- name: Install Go Dependencies
run: go get ./...
- name: Execute Go Build
run: go build -v ./...
- name: Execute Go Test
run: go test -v ./...
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Setup Go
uses: actions/[email protected]
with:
go-version: 1.20.7
- name: Run golangci-lint
uses: golangci/[email protected]
with:
version: v1.53.3
skip-pkg-cache: true
skip-build-cache: true
args: --timeout=10m