Skip to content

Commit 7a91774

Browse files
committed
Test multiple Elixir versions on CI
1 parent 56d55e0 commit 7a91774

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,16 @@ on: [push, pull_request]
33
jobs:
44
build:
55
runs-on: ubuntu-latest
6+
strategy:
7+
fail-fast: false
8+
matrix:
9+
elixir: [1.19, 1.18, 1.13]
610
steps:
711
- uses: actions/checkout@v4
812
- uses: erlef/setup-beam@v1
913
with:
1014
otp-version: 27
11-
elixir-version: 1.18
15+
elixir-version: ${{ matrix.elixir }}
1216
- run: mix deps.get
1317
- uses: ankane/setup-postgres@v1
1418
with:

0 commit comments

Comments
 (0)