Skip to content

Commit

Permalink
Add currently supported elixir versions to the test matrix
Browse files Browse the repository at this point in the history
* Includes the highest OTP version mentioned in https://hexdocs.pm/elixir/compatibility-and-deprecations.html#between-elixir-and-erlang-otp
* disables fail fast to see all test failures
  • Loading branch information
drteeth committed Oct 13, 2024
1 parent 5e17ea1 commit b462ec3
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,19 @@ jobs:
name: Build and test
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
otp: ['25.3', '26.2']
elixir: ['1.16.0']
include:
- elixir: 1.17.x
otp: 27
- elixir: 1.16.x
otp: 26
- elixir: 1.15.x
otp: 26
- elixir: 1.14.x
otp: 26
- elixir: 1.13.x
otp: 25

services:
postgres:
Expand Down

0 comments on commit b462ec3

Please sign in to comment.