Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
the-mikedavis committed Jun 14, 2024
1 parent f7ad6f2 commit 21b66df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:

- name: Check for unused dependencies
run: mix deps.get && mix deps.unlock --check-unused
if: ${{ matrix.lint && steps.cache-deps.outputs.cache-hit != 'true' }}
if: matrix.lint && steps.cache-deps.outputs.cache-hit != 'true'

- name: Compile with --warnings-as-errors
run: mix compile --warnings-as-errors
Expand All @@ -80,7 +80,7 @@ jobs:
# Create PLTs if no cached PLTs were found
- name: Create PLTs
if: ${{ matrix.dialyzer }} && steps.plt_cache.outputs.cache-hit != 'true'
if: matrix.dialyzer && steps.plt_cache.outputs.cache-hit != 'true'
run: MIX_ENV=test mix dialyzer --plt

- name: Run dialyzer
Expand Down

0 comments on commit 21b66df

Please sign in to comment.