From 389ac2bc8e9d42c145e57cf7066dc75d396fb7e6 Mon Sep 17 00:00:00 2001 From: Artem Baikov Date: Tue, 26 Dec 2023 22:03:27 +0300 Subject: [PATCH] move install deps before dialyzer steps --- .github/workflows/elixir.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/elixir.yml b/.github/workflows/elixir.yml index 0f30b05..4657334 100644 --- a/.github/workflows/elixir.yml +++ b/.github/workflows/elixir.yml @@ -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 @@ -73,9 +76,6 @@ jobs: path: | priv/plts - - name: Install dependencies - run: mix deps.get - - name: Run checks run: mix check env: