Skip to content

fix: use fullpath to avoid high cardinality (#8) #28

fix: use fullpath to avoid high cardinality (#8)

fix: use fullpath to avoid high cardinality (#8) #28

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
lint-and-ut:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.19
- uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Lint
run: |
go vet -stdmethods=false $(go list ./...)
go install mvdan.cc/gofumpt@v0.2.0
test -z "$(gofumpt -l -extra .)"
- name: Unit Test
run: go test -race -covermode=atomic -coverprofile=coverage.out ./...