From 56f63825cff576d6ef03ef2140ba6e642cdaf5fd 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 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 767b2d9..6a73415 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,8 +17,10 @@ jobs: otp: 26 - elixir: 1.14.x otp: 26 + check_formatted: "ignore" - elixir: 1.13.x otp: 25 + check_formatted: "ignore" services: postgres: @@ -54,6 +56,7 @@ jobs: run: mix deps.get - name: Check formatting + if: ${{ matrix.check_formatted != 'ignore' }} run: mix format --check-formatted - name: Setup EventStore test databases