Skip to content

Commit

Permalink
Add explicit compile step to dialyzer on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffkreeftmeijer committed Jun 19, 2024
1 parent 23b77bc commit ef2e20a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,6 @@ jobs:
with:
otp-version: 27.x
elixir-version: 1.17.x
- name: Install erlang-dialyzer
run: apt-get install erlang-dialyzer
- name: PLT cache
uses: actions/cache@v4
id: plt_cache
Expand All @@ -76,6 +74,8 @@ jobs:
uses: actions/checkout@v4
- name: Get dependencies
run: mix deps.get
- name: Compile
run: mix compile
- name: Analyze code with Dialyzer
run: mix dialyzer --format github

Expand Down

0 comments on commit ef2e20a

Please sign in to comment.