From 4e756c795e513a891015069daf8d7656198c1007 Mon Sep 17 00:00:00 2001 From: Tai Sakuma Date: Wed, 22 May 2024 09:20:25 -0400 Subject: [PATCH] Update GitHub Actions --- .github/workflows/unit-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 1c49d64..9d93329 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -41,14 +41,14 @@ jobs: - name: Run tests run: pytest -vv --cov --cov-report=xml - + - name: Check Codecov token id: check_codecov run: | if [ -n "${{ secrets.CODECOV_TOKEN }}" ]; then - echo "::set-output name=exists::true" + echo "exists=true" >> $GITHUB_OUTPUT else - echo "::set-output name=exists::false" + echo "exists=false" >> $GITHUB_OUTPUT fi - name: Upload coverage to Codecov