diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index edbd877..3031f7f 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -22,3 +22,7 @@ jobs: - name: Test run: | go test -v ./... + - name: Test + run: | + go test -v ./... + working-directory: testdata/gqlgen-todos diff --git a/Makefile b/Makefile index f66d248..a9c783a 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ -export GO111MODULE=on - default: test -ci: depsdev test +test: + go test -v ./... + cd testdata/gqlgen-todos/ && go test -v ./... lint: golangci-lint run ./... diff --git a/go.mod b/go.mod index 036929f..a7c4856 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/tailor-platform/gqlcheck -go 1.23.0 +go 1.24 require ( github.com/ikawaha/httpcheck v1.12.5