Skip to content

Commit b3b01f1

Browse files
JonZeollaclaude
andcommitted
fix: run only unit tests on Windows (integration tests need Docker)
Integration tests build and run Docker images which require Linux containers, unavailable on Windows runners. Run only unit tests on Windows; integration tests are covered by the Linux CI job. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent fb2f5e9 commit b3b01f1

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,11 +226,13 @@ jobs:
226226
run: |
227227
cd "$RUNNER_TEMP/replace-me"
228228
task -v init
229-
- name: Run tests
229+
- name: Run unit tests
230230
shell: bash
231+
# Integration tests require Docker (Linux images) which is not
232+
# available on Windows runners; those are covered by the Linux CI job.
231233
run: |
232234
cd "$RUNNER_TEMP/replace-me"
233-
task -v test
235+
task -v unit-test
234236
- name: Verify zenable CLI
235237
shell: bash
236238
run: |

0 commit comments

Comments
 (0)