chore: disable gotestfmt

This commit is contained in:
Kevin Franklin Kim 2025-04-05 20:49:34 +02:00
parent 24ce81a8a1
commit 9410bee0a1
No known key found for this signature in database
2 changed files with 4 additions and 3 deletions

View File

@ -15,14 +15,15 @@ jobs:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: sourcemeta/jsonschema@v7.3.0
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- uses: sourcemeta/jsonschema@v7.3.0
#- uses: gotesttools/gotestfmt-action@v2
# with:
# token: ${{ secrets.GITHUB_TOKEN }}

View File

@ -61,7 +61,7 @@ outdated:
.PHONY: test
## Run tests
test:
@GO_TEST_TAGS=-skip go test -coverprofile=coverage.out -race -json
@GO_TEST_TAGS=-skip go test -coverprofile=coverage.out -race ./...
#@GO_TEST_TAGS=-skip go test -coverprofile=coverage.out -race -json ./... 2>&1 | tee /tmp/gotest.log | gotestfmt
.PHONY: lint.fix