From 5b2c07aa87a15cc3e4e23b4063fff6945758ca0d Mon Sep 17 00:00:00 2001 From: Tim Carter Date: Mon, 23 Dec 2024 16:40:02 +1100 Subject: [PATCH] Correct names of go CI jobs. --- .github/workflows/go-ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go-ci.yaml b/.github/workflows/go-ci.yaml index 60f3eb7..8ebe4e8 100644 --- a/.github/workflows/go-ci.yaml +++ b/.github/workflows/go-ci.yaml @@ -18,7 +18,7 @@ jobs: uses: golangci/golangci-lint-action@v6.1.1 with: args: "--timeout=10m --build-tags='normal periodic minikube'" - go: + check_sources: name: Check sources runs-on: ubuntu-latest if: github.event_name == 'pull_request' @@ -47,8 +47,8 @@ jobs: git --no-pager diff exit 1 fi - unit: - name: Golang Unit tests + tests: + name: Golang tests runs-on: ubuntu-latest steps: - name: Check out code