From a7a1bcaea6e84ae3bf80c6a26fcd0973d9e17605 Mon Sep 17 00:00:00 2001 From: Vasu Adari Date: Tue, 7 May 2024 10:19:28 +0530 Subject: [PATCH] update elixir version in CI workflow --- .github/workflows/main.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f566133..89f88b3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,12 +11,11 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Setup Elixir and OTP - uses: actions/setup-elixir@v1 - with: - otp-version: '22.1' - elixir-version: '1.8' - + name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}} + strategy: + matrix: + otp: ['20.3', '21.3', '22.2'] + elixir: ['1.8.2', '1.9.4'] - name: Install dependencies run: mix deps.get