From 977e5578f2e1974156d08597ab2d0882e8ed18a9 Mon Sep 17 00:00:00 2001 From: Benjamin Moss Date: Wed, 23 Oct 2024 10:04:50 -0400 Subject: [PATCH] Expand test matrix to include Elixir 1.13, 1.15, 1.16, 1.17 as well as OTP 26 & 27 --- .github/workflows/test.yml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3473cb8..9f6705b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,6 +1,11 @@ name: Test -on: [push, pull_request] +on: + pull_request: + push: + branches: + - master + - 'v*' jobs: build: @@ -10,6 +15,17 @@ jobs: matrix: otp: ['25.3'] elixir: ['1.15.7'] + 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: