From 14c9835504f40380c6c1b1752d96430506d8f478 Mon Sep 17 00:00:00 2001 From: Jon Kartago Lamida Date: Tue, 14 May 2024 18:51:47 +0800 Subject: [PATCH] Remove redundant step name Signed-off-by: Jon Kartago Lamida --- .github/workflows/test-build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index abd07f157..811408f34 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -25,17 +25,17 @@ jobs: uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - - name: Display Go Version + - name: Display Go version run: go version - - name: Run Go mod check + - name: Go mod check run: make mod-check - - name: Run lint + - name: Lint run: make lint - - name: Run test + - name: Test run: make test - - name: Run test benchmarks + - name: Test benchmarks run: make test-benchmarks - - name: Run check protos and generate Go code from the proto files + - name: Regenerate and check protos run: | apt-get update && apt-get -y install unzip go mod vendor