We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 129f96a commit bc4e919Copy full SHA for bc4e919
.github/workflows/worker-tests.yaml
@@ -8,7 +8,16 @@ on:
8
9
jobs:
10
worker_tests:
11
- runs-on: ubuntu-latest
+ strategy:
12
+ matrix:
13
+ os: [Linux, Windows]
14
+ include:
15
+ - os: Linux
16
+ pool: ubuntu-latest
17
+ - os: Windows
18
+ pool: windows-latest
19
+ name: Run tests on ${{ matrix.os }}
20
+ runs-on: ${{ matrix.pool }}
21
steps:
22
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
23
@@ -17,6 +26,7 @@ jobs:
26
go-version: "1.23.6"
27
28
- name: Build worker Docker image
29
+ if: ${{ matrix.os != 'Windows' }}
30
run: |
31
docker compose build
32
0 commit comments