Skip to content

Commit 0bf561f

Browse files
committed
Use endswith to pick up scheduled full tests on Wednesday
Ref https://docs.github.com/en/actions/learn-github-actions/expressions#endswith.
1 parent 1a7961a commit 0bf561f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ jobs:
135135

136136
# Run full tests including doctests on Wednesday
137137
- name: Run full tests
138-
if: github.event_name == 'schedule' && github.event.schedule == '0 0 * * 3'
138+
if: github.event_name == 'schedule' && endswith(github.event.schedule, '3')
139139
run: make fulltest PYTEST_EXTRA="-r P"
140140

141141
# Upload diff images on test failure

0 commit comments

Comments
 (0)