Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ jobs:
erlang: "27.x"
- elixir: "1.19.x"
erlang: "28.x"
- elixir: "latest"
erlang: "28.x"
services:
db:
image: postgres:15
Expand Down Expand Up @@ -86,16 +88,16 @@ jobs:
run: mix compile --force --warnings-as-errors

- name: Run Tests - SQLite3
run: mix test
run: mix test --warnings-as-errors
env:
DB: sqlite

- name: Run Tests - PostgreSQL
run: mix test
run: mix test --warnings-as-errors
env:
DB: postgres

- name: Run Tests - MySQL/MariaDB
run: mix test
run: mix test --warnings-as-errors
env:
DB: mysql
Loading