We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 559b8a6 commit a049898Copy full SHA for a049898
.github/workflows/test_actions.yml
@@ -73,7 +73,7 @@ jobs:
73
- name: Set up Poetry
74
id: setup-poetry
75
uses: ./setup-poetry
76
- - name: Expect cache hit
+ - name: Error if cache miss
77
if: steps.setup-poetry.outputs.cache-hit != 'true'
78
run: echo "::error title=Test Failure::Expected cache hit."; exit 1
79
shell: bash
@@ -107,7 +107,7 @@ jobs:
107
108
with:
109
use-cache: false
110
- - name: Expect cache miss
+ - name: Error if cache hit
111
if: steps.setup-poetry.outputs.cache-hit == 'true'
112
run: echo "::error title=Test Failure::Expected cache miss."; exit 1
113
0 commit comments