From 6095c1368073d4fcb1d6551b2154ce8c0050920d Mon Sep 17 00:00:00 2001 From: Fabian Burth Date: Thu, 13 Jun 2024 16:56:37 +0200 Subject: [PATCH] Adjust action (#813) * preparation for other pr * install requirements in action --- .github/workflows/lint_and_test.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint_and_test.yaml b/.github/workflows/lint_and_test.yaml index 73434107be..45630abc63 100644 --- a/.github/workflows/lint_and_test.yaml +++ b/.github/workflows/lint_and_test.yaml @@ -35,10 +35,9 @@ jobs: uses: actions/setup-go@v5 with: go-version-file: '${{ github.workspace }}/go.mod' - - name: Unit test + - name: Test run: | - PATH=$PATH:$(go env GOPATH)/bin make build - PATH=$PATH:$(go env GOPATH)/bin make test + PATH=$PATH:$(go env GOPATH)/bin make build install-requirements test lint: name: Lint