diff options
author | 2020-11-18 10:29:26 +0100 | |
---|---|---|
committer | 2020-11-18 10:29:26 +0100 | |
commit | d9770179cff04883cd9432800a3f914785a95407 (patch) | |
tree | b3d53ae631b42f68195782989d9b582be6d49ac8 | |
parent | Document steps in workflow file (diff) |
Debug skipped steps
-rw-r--r-- | .github/workflows/lint-test.yaml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index 9d546d2..0bdcd98 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -112,11 +112,14 @@ jobs: cmd='coverage run -m unittest; coverage report -m' docker exec snekbox_test /bin/bash -c "${cmd}" + - name: print output + run: echo "${{ steps.run_tests.outputs.started }}" + # Set-up a Python version to process the coverage reports # Note: This step runs even if the test step failed to make # sure we process the coverage reports. - name: Setup python - if: always() && steps.run_tests.outputs.started == 'true' + # if: always() && steps.run_tests.outputs.started == 'true' id: python uses: actions/setup-python@v2 with: @@ -131,7 +134,7 @@ jobs: # step in the check suite visible in the PR with a link to # the job. - name: Publish coverage report to coveralls.io - if: always() && steps.tests.outputs.started == 'true' + # if: always() && steps.tests.outputs.started == 'true' env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | |