File tree Expand file tree Collapse file tree 1 file changed +16
-6
lines changed
Expand file tree Collapse file tree 1 file changed +16
-6
lines changed Original file line number Diff line number Diff line change @@ -5,17 +5,27 @@ on: push
55
66jobs :
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
You can’t perform that action at this time.
0 commit comments