From e12142633a4b92607075ad5a97ac1c87785ee50a Mon Sep 17 00:00:00 2001 From: s1d3sw1ped_bot Date: Mon, 31 Aug 2026 21:13:07 +0000 Subject: [PATCH] Run CI on push to master and bump Go to 1.26.0 Match steamcache2: trigger check-and-test on pull_request and push to the default branch. Tests passed on 1.26.0. --- .gitea/workflows/test-pr.yaml | 11 +++++++---- go.mod | 2 +- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/test-pr.yaml b/.gitea/workflows/test-pr.yaml index 33a868a..85bee5b 100644 --- a/.gitea/workflows/test-pr.yaml +++ b/.gitea/workflows/test-pr.yaml @@ -1,6 +1,9 @@ -name: PR Check +name: CI on: - - pull_request + pull_request: + push: + branches: + - master jobs: check-and-test: @@ -10,6 +13,6 @@ jobs: - uses: actions/setup-go@main with: go-version-file: 'go.mod' - - run: go mod tidy + - run: go mod tidy - run: go build ./... - - run: go test -race -v -shuffle=on ./... \ No newline at end of file + - run: go test -race -v -shuffle=on ./... diff --git a/go.mod b/go.mod index a1462d3..95ce2ac 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module teleport -go 1.23.5 +go 1.26.0 require ( github.com/miekg/dns v1.1.68