Skip to content

chore: remove analyzer #309

chore: remove analyzer

chore: remove analyzer #309

Workflow file for this run

name: gci
on:
pull_request:
jobs:
build:
name: Tests
runs-on: ${{ matrix.os }}
env:
GOVER: 1.21
GOPROXY: https://proxy.golang.org
ARCHIVE_OUTDIR: dist/archives
TEST_OUTPUT_FILE_PREFIX: test_report
strategy:
matrix:
os: [ubuntu-latest, windows-2019, macOS-latest]
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go ${{ env.GOVER }}
uses: actions/setup-go@v5
with:
go-version: ${{ env.GOVER }}
- name: golangci-lint
if: matrix.os == 'linux'
uses: golangci/golangci-lint-action@v6
with:
version: ${{ env.GOLANGCILINT_VER }}
- name: Run make test
env:
COVERAGE_OPTS: "-coverprofile=coverage.txt -covermode=atomic"
run: make test