From 000284e6970e2898a6695f68b970ebba7d5999f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joa=CC=83o=20Ota=CC=81vio=20Biondo?= Date: Sat, 28 Sep 2024 19:44:42 -0300 Subject: [PATCH] Remove matrix from CI --- .github/workflows/elixir.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/elixir.yml b/.github/workflows/elixir.yml index 1adb4ff..4534797 100644 --- a/.github/workflows/elixir.yml +++ b/.github/workflows/elixir.yml @@ -15,20 +15,13 @@ permissions: jobs: test: runs-on: ubuntu-latest - name: Test on OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}} - strategy: - # Specify the OTP and Elixir versions to use when building - # and running the workflow steps. - matrix: - otp: ['27.0.0'] - elixir: ['1.17.0'] steps: # Step: Setup Elixir + Erlang image as the base. - name: Set up Elixir uses: erlef/setup-beam@v1 with: - otp-version: ${{matrix.otp}} - elixir-version: ${{matrix.elixir}} + otp-version: '27.0.0' + elixir-version: '1.17.0' # Step: Check out the code. - name: Checkout code