diff --git a/.github/workflows/elixir.yml b/.github/workflows/elixir.yml index ddccd75..fa22a2c 100644 --- a/.github/workflows/elixir.yml +++ b/.github/workflows/elixir.yml @@ -56,6 +56,7 @@ jobs: - name: Compile application run: mix compile --warnings-as-errors - name: Run formatter + if: matrix.elixir == '1.16' && matrix.otp == '26.2' run: mix format --check-formatted - name: Create plts if: steps.plt-cache.outputs.cache-hit != 'true' @@ -69,5 +70,5 @@ jobs: - name: Run tests run: mix test - name: Run tests and coverage - if: matrix.elixir == '1.14' && matrix.otp == '25.2' + if: matrix.elixir == '1.16' && matrix.otp == '26.2' run: mix coveralls.github