diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 0b2d9bba..7ce73138 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -17,8 +17,8 @@ jobs: steps: - uses: actions/checkout@v3 - name: Get dependencies - run: go get -v -t -d -coverprofile=cover.out ./... + run: go get -v -t -d ./... + - name: Run tests + run: go test -coverprofile=cover.out main_test.go main.go - name: Go Beautiful HTML Coverage uses: gha-common/go-beautiful-html-coverage@v1 - - name: Run tests - run: go test main_test.go main.go