From d5bd415d6458fd2c905d05c83ee14b24fe8bbab8 Mon Sep 17 00:00:00 2001 From: Benjamin Moss Date: Sat, 12 Oct 2024 23:59:43 -0400 Subject: [PATCH] Only run formatting on newer releases --- .github/workflows/test.yml | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 82c333b..35a391f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,14 +12,16 @@ jobs: 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 + # - elixir: 1.16.x + # otp: 26 + # - elixir: 1.15.x + # otp: 26 + # - elixir: 1.14.x + # otp: 26 + # check_formatted: false + # - elixir: 1.13.x otp: 25 + check_formatted: false services: postgres: @@ -54,7 +56,7 @@ jobs: - name: Install dependencies run: mix deps.get - - name: Check formatting + - if: ${{ matrix.check_formatted != false }} run: mix format --check-formatted - name: Setup EventStore test databases