From 17011126fe65ca09ace2dc05b24f41b5e6a4c4c5 Mon Sep 17 00:00:00 2001 From: Tobias Kaupat Date: Fri, 6 Sep 2024 13:41:36 +0200 Subject: [PATCH] fix github workflow --- .github/workflows/build.yml | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d57c6c0..2b4e109 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,22 +26,22 @@ jobs: timeout-minutes: 10 env: CGO_ENABLED: 0 - services: - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Set up Go - uses: actions/setup-go@v5 - with: - go-version: '1.23' - cache: true - - name: install go dependencies - run: go mod download all - - name: go generate - run: go generate ./... - - name: Test - run: go test ./... - # If a build fails due to a missing go.sum entry: Run `go mod tidy`, then `go mod download all` and commit the changes. - #build-go + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Set up Go + uses: actions/setup-go@v5 + with: + go-version: '1.23' + cache: true + - name: install go dependencies + run: go mod download all + - name: go generate + run: go generate ./... + - name: Test + run: go test ./... + + # If a build fails due to a missing go.sum entry: Run `go mod tidy`, then `go mod download all` and commit the changes. + #build-go