From f8b206ae37ff30fdc824765c675fab3465a548b0 Mon Sep 17 00:00:00 2001 From: Kilian SMITI Date: Sat, 4 Mar 2023 04:43:42 +0100 Subject: [PATCH] refact: rollback old go-test action --- .github/workflows/go-test.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index 574262c..c594113 100644 --- a/.github/workflows/go-test.yml +++ b/.github/workflows/go-test.yml @@ -7,12 +7,15 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Setup Go uses: actions/setup-go@v3 - - name: Install dependencies - run: go mod tidy + with: + go-version: 1.20.1 + - name: Test run: go test -v ./... + - name: Update coverage report uses: ncruces/go-coverage-report@main if: |