Skip to content

chore(deps): update golangci/golangci-lint-action action to v4 (#105) #374

chore(deps): update golangci/golangci-lint-action action to v4 (#105)

chore(deps): update golangci/golangci-lint-action action to v4 (#105) #374

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.20.x
- name: Run mod tidy
run: go mod tidy
- name: Run tests
run: GO111MODULE=on go test -race ./...