From f31e36031f4af737ec071fb822115c607a9cc411 Mon Sep 17 00:00:00 2001 From: Ken'ichiro Oyama Date: Tue, 23 Dec 2025 10:41:03 +0900 Subject: [PATCH 1/2] chore: bump up go directive version --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 5c7185e623235066d5b507c0bd1b73c13ec5a992 Mon Sep 17 00:00:00 2001 From: Ken'ichiro Oyama Date: Tue, 23 Dec 2025 10:46:56 +0900 Subject: [PATCH 2/2] chore: fix ci --- .github/workflows/go.yml | 4 ++++ Makefile | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) 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 ./...