Skip to content

Commit

Permalink
Hash individual mix.lock files in GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
danschultzer committed Dec 28, 2024
1 parent 949452b commit dd12d53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
path: |
_build
deps
key: ${{ runner.os }}-mix-${{ env.cache-name }}-${{ hashFiles('**/mix.lock') }}
key: ${{ runner.os }}-mix-${{ env.cache-name }}-${{ hashFiles('mix.lock') }}
- run: mix deps.get
- run: mix compile --warnings-as-errors
- run: mix credo --strict --ignore design.tagtodo
Expand All @@ -51,7 +51,7 @@ jobs:
path: |
integration/_build
integration/deps
key: ${{ runner.os }}-mix-${{ env.cache-name }}-${{ hashFiles('**/integration/mix.lock') }}
key: ${{ runner.os }}-mix-${{ env.cache-name }}-${{ hashFiles('integration/mix.lock') }}
- run: mix deps.get
- run: mix compile --warnings-as-errors
- run: mix format --check-formatted
Expand Down

0 comments on commit dd12d53

Please sign in to comment.