diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml index e624122..8f93700 100644 --- a/.github/workflows/debug.yml +++ b/.github/workflows/debug.yml @@ -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 @@ -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 diff --git a/Makefile b/Makefile index e47456e..cda2e5b 100644 --- a/Makefile +++ b/Makefile @@ -18,4 +18,7 @@ lint_install: go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest test: - go test -v ./... \ No newline at end of file + go test -v ./... + +test_go119: + go test -v .