From b294d93d8466134aac78feade9f4010029d12ddb Mon Sep 17 00:00:00 2001 From: Yuri Artemev Date: Wed, 25 Dec 2024 15:54:45 +0700 Subject: [PATCH] update ci.yml --- .github/workflows/ci.yml | 26 +++++++++++--------------- 1 file changed, 11 insertions(+), 15 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ac3bd26..f01c481 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,26 +9,22 @@ on: jobs: test: name: Test (Elixir ${{matrix.elixir}} | Erlang/OTP ${{matrix.otp}}) - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 + env: + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} + MIX_ENV: test strategy: fail-fast: false matrix: include: - - otp: 25 - elixir: 1.14 + - elixir: "1.17.3" + otp: "27.1" coverage: true - lint: true - - otp: 24.3 - elixir: 1.13 - - otp: 23.3 - elixir: 1.12 - - otp: 22.3 - elixir: 1.11 - - otp: 21.3 - elixir: 1.10.4 - env: - GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} - MIX_ENV: test + lint: lint + - elixir: "1.17.3" + otp: "25.0.4" + - elixir: "1.14.5" + otp: "23.3.4.20" steps: - name: Clone the repository