diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index b853699..a436913 100644 --- a/.github/workflows/go-test.yml +++ b/.github/workflows/go-test.yml @@ -13,7 +13,7 @@ on: - "README.md" env: - GO_VERSION: "1.26.2" + GO_VERSION: "1.26.3" jobs: unit_test: diff --git a/Dockerfile b/Dockerfile index 3d95929..a3affc7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.26.2 AS builder +FROM golang:1.26.3 AS builder WORKDIR /src COPY . . diff --git a/go.mod b/go.mod index 769d97b..3cab625 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/encodeous/nylon -go 1.26.2 +go 1.26.3 require ( github.com/digineo/go-ping v1.2.0 diff --git a/mise.toml b/mise.toml index 89dbe7b..72abcf4 100644 --- a/mise.toml +++ b/mise.toml @@ -1,2 +1,11 @@ [tools] -go = "1.25.4" +go = "1.26.3" + +[tasks.router_test] +run = "go run gotest.tools/gotestsum@latest -- --race -tags=router_test ./..." + +[tasks.integration] +run = "go run gotest.tools/gotestsum@latest -- --race -tags=integration ./integration/..." + +[tasks.e2e] +run = "go run gotest.tools/gotestsum@latest -- -tags=e2e ./e2e/... -parallel $(nproc)"