Skip to content
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.

Auto-install golangci-lint #106

Auto-install golangci-lint

Auto-install golangci-lint #106

Workflow file for this run

name: Testing
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
name: Go
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- '1.18'
- '1.19'
steps:
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Test
run: go test -v -count=1 -race ./...
env:
FORCE_COLOR: true