Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
nekohasekai committed May 10, 2024
1 parent 4a8c33f commit 9bdf803
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
continue-on-error: true
- name: Build
run: |
make test
make test_go119
build_go119:
name: Linux Debug build (Go 1.19)
runs-on: ubuntu-latest
Expand All @@ -59,7 +59,7 @@ jobs:
continue-on-error: true
- name: Build
run: |
make test
make test_go119
build_go120:
name: Linux Debug build (Go 1.20)
runs-on: ubuntu-latest
Expand Down
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,7 @@ lint_install:
go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest

test:
go test -v ./...
go test -v ./...

test_go119:
go test -v .

0 comments on commit 9bdf803

Please sign in to comment.