From a9f51b4337926c085d3f29f962f00d3b6dedaefe Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Fri, 4 Jul 2025 17:57:23 +0200 Subject: [PATCH] .github: update --- .github/workflows/go.yml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index cc792a47ad..13f97898bb 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -1,8 +1,10 @@ on: push: - branches: [ master ] + branches: + - master pull_request: - branches: [ master ] + branches: + - master workflow_dispatch: jobs: @@ -11,6 +13,8 @@ jobs: runs-on: self-hosted-ghr steps: - uses: actions/checkout@v4 + with: + submodules: false # Cache build tools to avoid downloading them each time - uses: actions/cache@v4 @@ -41,14 +45,14 @@ jobs: - '1.23' steps: - uses: actions/checkout@v4 + with: + submodules: true - name: Set up Go uses: actions/setup-go@v5 with: go-version: ${{ matrix.go }} - cache-dependency-path: | - go.sum - build/checksums.txt + cache: false - name: Run tests run: go test ./...