Skip to content

Commit 80b3a22

Browse files
committed
Improved CI
1 parent 56d55e0 commit 80b3a22

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/build.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,20 @@ on: [push, pull_request]
33
jobs:
44
build:
55
runs-on: ubuntu-latest
6+
strategy:
7+
fail-fast: false
8+
matrix:
9+
include:
10+
- elixir: 1.18
11+
otp: 27
12+
- elixir: 1.13
13+
opt: 22
614
steps:
715
- uses: actions/checkout@v4
816
- uses: erlef/setup-beam@v1
917
with:
10-
otp-version: 27
11-
elixir-version: 1.18
18+
otp-version: ${{ matrix.otp }}
19+
elixir-version: ${{ matrix.elixir }}
1220
- run: mix deps.get
1321
- uses: ankane/setup-postgres@v1
1422
with:

0 commit comments

Comments
 (0)