Skip to content
This repository has been archived by the owner on Apr 4, 2024. It is now read-only.

Commit

Permalink
Workaround: only run mix format check with 1.8.1
Browse files Browse the repository at this point in the history
Reasoning: the canonical elixir format changed from 1.7.3 to the current
version. We don't want to bother being compliant with standards that are
outdated anyway, though we still want to *run* on that old version if
it's possible.
  • Loading branch information
notriddle committed Apr 19, 2020
1 parent 26546b7 commit d7d1785
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ install:
- mix do local.rebar --force, local.hex --force, deps.get

script:
- mix format --check-formatted
- if [[ "$ELIXIR_VERSION" = "1.8.1" ]]; then mix format --check-formatted; fi
- mix test

env:
Expand Down

0 comments on commit d7d1785

Please sign in to comment.