Skip to content

Commit 38fe213

Browse files
committed
Does Windows 2022 pass?
1 parent b860de0 commit 38fe213

File tree

1 file changed

+16
-6
lines changed

1 file changed

+16
-6
lines changed

.github/workflows/windows.yml

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,27 @@ on: push
55

66
jobs:
77
test:
8-
runs-on: blacksmith-2vcpu-windows-2025
9-
name: Windows / OTP 28 / Elixir 1.19
10-
env:
11-
ImageOS: win25
8+
runs-on: ${{ matrix.os.runner }}
9+
name: ${{ matrix.os.name }} / OTP ${{ matrix.beam.otp }} / Elixir ${{ matrix.beam.elixir }}
10+
strategy:
11+
matrix:
12+
beam:
13+
- { otp: '28', elixir: '1.19' }
14+
os:
15+
- name: Windows 2022
16+
runner: blacksmith-2vcpu-windows-2022
17+
- name: Windows 2025
18+
runner: blacksmith-2vcpu-windows-2025
19+
env:
20+
ImageOS: win25
21+
env: ${{ matrix.os.env }}
1222
steps:
1323
- uses: actions/checkout@v4
1424

1525
- uses: erlef/setup-beam@566deebc640988a494af16ecdf6f820fe0d3fea4
1626
with:
17-
otp-version: '28'
18-
elixir-version: '1.19'
27+
otp-version: ${{ matrix.beam.otp }}
28+
elixir-version: ${{ matrix.beam.elixir }}
1929

2030
- name: Retrieve com0com Cache
2131
uses: actions/cache@v3

0 commit comments

Comments
 (0)