Skip to content

Commit 98a20a1

Browse files
committed
Move lints into a separate step and allow them to fail for now
1 parent 9493e83 commit 98a20a1

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,11 @@ jobs:
5757
run: |
5858
# This is basically `mix test` with coverage enabled.
5959
mix coveralls.json
60+
61+
- name: Lints
62+
# Let the build succeed for now even if the lints fail.
63+
continue-on-error: true
64+
run: |
6065
mix format --check-formatted
6166
# This will mention FIXME and TODO comments without failing, any
6267
# other issue fails the build.

0 commit comments

Comments
 (0)