Skip to content
This repository has been archived by the owner on Jan 30, 2025. It is now read-only.

Commit

Permalink
Install dependencies before creating PLTs
Browse files Browse the repository at this point in the history
  • Loading branch information
Will Ceolin committed Jul 20, 2024
1 parent e5233b7 commit 989b5a0
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,13 @@ jobs:
path: |
priv/plts
- name: Install dependencies
run: mix deps.get
shell: bash

- name: Compile app
run: mix compile --all-warnings --warnings-as-errors

# Create PLTs if no cache was found
- name: Create PLTs
if: steps.plt_cache.outputs.cache-hit != 'true'
Expand All @@ -88,13 +95,6 @@ jobs:
path: |
priv/plts
- name: Install dependencies
run: mix deps.get
shell: bash

- name: Compile app
run: mix compile --all-warnings --warnings-as-errors

- name: Check formatter
run: mix format --check-formatted

Expand Down

0 comments on commit 989b5a0

Please sign in to comment.