From 508ab40def5cdd89bf4997344acb31be6e2f63a7 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 82c333b..418425f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,8 +18,10 @@ jobs: otp: 26 - elixir: 1.14.x otp: 26 + check_formatted: "ignore" - elixir: 1.13.x otp: 25 + check_formatted: "ignore" services: postgres: @@ -55,6 +57,7 @@ jobs: run: mix deps.get - name: Check formatting + if: ${{ matrix.check_formatted != 'ignore' }} run: mix format --check-formatted - name: Setup EventStore test databases