Skip to content

chore: upgrade golang packages and github worfklow #22

chore: upgrade golang packages and github worfklow

chore: upgrade golang packages and github worfklow #22

Workflow file for this run

name: Go - Development Build
on:
pull_request:
push:
branches:
- main
concurrency:
# Cancels pending runs when a PR gets updated.
group: ${{ github.head_ref || github.run_id }}-${{ github.actor }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.20.13
- 1.21.6
steps:
- uses: actions/checkout@v4.1.1
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5.0.0
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/checkout@v4.1.1
- name: Setup Go
uses: actions/setup-go@v5.0.0
with:
go-version: 1.20.13
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3.7.0
with:
version: v1.53.3
skip-pkg-cache: true
skip-build-cache: true
args: --timeout=10m