From 966d560d1f1a10cb8e29d7156c50d05d1be94c3c Mon Sep 17 00:00:00 2001 From: Kilian Ciuffolo <385716+kilianc@users.noreply.github.com> Date: Mon, 20 May 2024 00:35:24 -0700 Subject: [PATCH] Update tests.yaml --- .github/workflows/tests.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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