Skip to content

Commit 172cfb0

Browse files
committed
make the example a bit more elaborate
1 parent d06b2a7 commit 172cfb0

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

README.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,23 @@ To use the `issue-from-pytest-log` action in workflows, simply add a new step:
99
jobs:
1010
my-job:
1111
...
12+
strategy:
13+
fail-fast: false
14+
...
15+
16+
...
17+
18+
- uses: actions/setup-python@v4
19+
with:
20+
python-version: "3.10"
21+
cache: pip
22+
23+
...
1224

1325
- uses: xarray-contrib/issue-from-pytest-log@version
1426
if: |
1527
failure()
16-
&& github.event_name == 'schedule'
1728
&& ...
1829
with:
19-
log_path: pytest-log.jsonl
30+
log-path: pytest-log.jsonl
2031
```

0 commit comments

Comments
 (0)