From c7ee7194f93399e8ebb8e5388b1dde984e7b4cc2 Mon Sep 17 00:00:00 2001 From: Christian Ege Date: Mon, 25 Dec 2023 11:47:43 +0100 Subject: [PATCH] ci: fix the LFS part Signed-off-by: Christian Ege --- .github/workflows/go.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 5ced185..3617c4b 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -32,13 +32,14 @@ jobs: needs: lint steps: - uses: actions/checkout@v3 - - uses: actions/setup-go@v4 with: lfs: 'true' + - uses: actions/setup-go@v4 + with: go-version: '1.21' - - run: git lfs pull + - name: 🧪 Run the unit tests - run: go test -v -failfast -coverprofile cover.out -timeout=1m ./... - - name: Upload coverage reports to Codecov + - name: 🫴🏿 Upload the coverage reports to Codecov uses: codecov/codecov-action@v3 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}