We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a61b8f7 commit 3b8c790Copy full SHA for 3b8c790
.github/workflows/ci.yml
@@ -48,22 +48,31 @@ jobs:
48
strategy:
49
fail-fast: false
50
matrix:
51
- os: ["ubuntu-latest", "windows-2019"]
+ os: ["ubuntu-latest"]
52
elixir: ["1.17", "1.16", "1.15"]
53
otp: ["27", "26", "25"]
54
exclude:
55
- elixir: "1.15"
56
otp: "27"
57
- elixir: "1.16"
58
59
+ include:
60
+ - os: "windows-2019"
61
+ otp: "27"
62
+ elixir: "1.17"
63
+
64
steps:
65
- uses: actions/checkout@v4
66
- uses: erlef/setup-beam@v1
67
with:
68
otp-version: ${{ matrix.otp }}
69
elixir-version: ${{ matrix.elixir }}
- - uses: egor-tensin/vs-shell@v2
- if: runner.os == 'Windows'
70
71
+ - uses: ilammy/msvc-dev-cmd@v1
72
+ if: matrix.os == 'windows-2019'
73
+ with:
74
+ arch: x64
75
76
- uses: actions/cache@v3
77
78
path: deps
0 commit comments