We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a13f8c commit 2396b3aCopy full SHA for 2396b3a
.github/workflows/tests.yml
@@ -58,3 +58,9 @@ jobs:
58
run: MIX_ENV=test MAX_CASES=3 mix coveralls.github
59
env:
60
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
61
+ - name: Check for warnings
62
+ run: mix compile --force --warnings-as-errors
63
+ - name: Run format check
64
+ run: mix format --check-formatted
65
+ - name: Run dialyzer
66
+ run: mix dialyzer
Dockerfile
@@ -33,7 +33,8 @@ RUN mix local.hex --force && \
33
mix local.rebar --force
34
35
# install mix dependencies
36
-COPY mix.exs mix.lock beacon ./
+COPY mix.exs mix.lock ./
37
+COPY beacon beacon
38
RUN mix deps.get --only $MIX_ENV
39
RUN mkdir config
40
0 commit comments