From b7e3a8e0231e062ed76009b0e2e575474764b70e Mon Sep 17 00:00:00 2001 From: Willow Carretero Chavez Date: Tue, 19 Dec 2023 12:52:21 -0500 Subject: [PATCH] Fix coverage action (#430) --- .github/workflows/release.yml | 2 +- justfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 398f1904..ab793b73 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,7 +6,7 @@ on: - 'v[0-9]+.[0-9]+.[0-9]+' jobs: - build: + release: runs-on: ubuntu-latest permissions: contents: write diff --git a/justfile b/justfile index 07f8b541..e36b66ba 100644 --- a/justfile +++ b/justfile @@ -6,7 +6,7 @@ default: # Get coverage profile coverage: - go test -v -coverprofile=provile.cov ./... + go test -v -coverprofile=profile.cov ./... # Linting and static checks lint: