Skip to content

Commit f636e60

Browse files
authored
chore: Run test matrix on Elixir 1.20.x (#167)
The first RC of Elixir 1.20 has just been released. Running the CI on that version will allow us to catch type errors quickly and fix them before 1.20 is officially released.
1 parent 0432a90 commit f636e60

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/elixir.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ jobs:
2828
erlang: "27.x"
2929
- elixir: "1.19.x"
3030
erlang: "28.x"
31+
- elixir: "latest"
32+
erlang: "28.x"
3133
services:
3234
db:
3335
image: postgres:15
@@ -86,16 +88,16 @@ jobs:
8688
run: mix compile --force --warnings-as-errors
8789

8890
- name: Run Tests - SQLite3
89-
run: mix test
91+
run: mix test --warnings-as-errors
9092
env:
9193
DB: sqlite
9294

9395
- name: Run Tests - PostgreSQL
94-
run: mix test
96+
run: mix test --warnings-as-errors
9597
env:
9698
DB: postgres
9799

98100
- name: Run Tests - MySQL/MariaDB
99-
run: mix test
101+
run: mix test --warnings-as-errors
100102
env:
101103
DB: mysql

0 commit comments

Comments
 (0)