Skip to content

Use --clean instead of deprecated --rm-dist #50

Use --clean instead of deprecated --rm-dist

Use --clean instead of deprecated --rm-dist #50

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go: [1.21]
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
args: -D errcheck
- name: Run test
run: |
go test -v ./...