Skip to content

Commit 4eebd05

Browse files
committed
Add comamnds to force or skip the Windows CI
The commands are [test_windows_full] and [skip test_windows_fast]
1 parent fbf2e7f commit 4eebd05

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,11 @@ jobs:
101101
|| (
102102
github.event_name == 'pull_request'
103103
&& !contains(github.event.pull_request.body, '[skip ci]')
104+
)
105+
|| (
106+
github.event_name == 'pull_request'
107+
&& !contains(github.event.pull_request.body, '[skip ci]')
108+
&& !contains(github.event.pull_request.body, '[skip test_windows_fast]')
104109
)"
105110

106111
steps:
@@ -121,6 +126,11 @@ jobs:
121126
|| (
122127
github.event_name == 'push'
123128
&& !startsWith(github.event.ref, 'refs/tags/sbt-dotty-')
129+
)
130+
|| (
131+
github.event_name == 'pull_request'
132+
&& !contains(github.event.pull_request.body, '[skip ci]')
133+
&& contains(github.event.pull_request.body, '[test_windows_full]')
124134
)"
125135

126136
steps:

0 commit comments

Comments
 (0)