Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit af8a046

Browse filesBrowse files
authored
Merge pull request #25175 from matplotlib/ksunden-unbreak-tests-workflow
2 parents e0c59ee + f989c9f commit af8a046
Copy full SHA for af8a046

File tree

Expand file treeCollapse file tree

1 file changed

+9
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+9
-1
lines changed

‎.github/workflows/tests.yml

Copy file name to clipboardExpand all lines: .github/workflows/tests.yml
+9-1Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,15 @@ env:
2525

2626
jobs:
2727
test:
28-
if: "github.event_name == 'workflow_dispatch' || github.repository == 'matplotlib/matplotlib' && !contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]') && !contains(github.event.head_commit.message, '[skip github]' && !contains(github.event.head_commit.message, '[ci doc]')"
28+
if: |
29+
github.event_name == 'workflow_dispatch' ||
30+
(
31+
github.repository == 'matplotlib/matplotlib' &&
32+
!contains(github.event.head_commit.message, '[ci skip]') &&
33+
!contains(github.event.head_commit.message, '[skip ci]') &&
34+
!contains(github.event.head_commit.message, '[skip github]') &&
35+
!contains(github.event.head_commit.message, '[ci doc]')
36+
)
2937
permissions:
3038
contents: read
3139
name: "Python ${{ matrix.python-version }} on ${{ matrix.os }} ${{ matrix.name-suffix }}"

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.