Skip to content

Commit

Permalink
move install deps before dialyzer steps
Browse files Browse the repository at this point in the history
  • Loading branch information
senconscious committed Dec 26, 2023
1 parent a15f21b commit 389ac2b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ jobs:
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-

- name: Install dependencies
run: mix deps.get

# Cache key based on Erlang/Elixir version and the mix.lock hash
- name: Restore PLT cache
id: plt_cache
Expand Down Expand Up @@ -73,9 +76,6 @@ jobs:
path: |
priv/plts
- name: Install dependencies
run: mix deps.get

- name: Run checks
run: mix check
env:
Expand Down

0 comments on commit 389ac2b

Please sign in to comment.