Skip to content

Commit 3a95dc3

Browse files
committed
Debug dependency caching on CI
1 parent e57f082 commit 3a95dc3

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/elixir_check_formatting.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,17 @@ jobs:
5454
!packages/${{ matrix.package }}/_build/*/lib/electric_telemetry
5555
key: "${{ runner.os }}-${{ matrix.package }}-build-${{ env.MIX_ENV }}-${{ hashFiles('packages/${{ matrix.package }}/mix.lock') }}"
5656
restore-keys: |
57+
${{ runner.os }}-${{ matrix.package }}-build-${{ env.MIX_ENV }}-${{ matrix.package }}
5758
${{ runner.os }}-${{ matrix.package }}-build-${{ env.MIX_ENV }}-${{ hashFiles('packages/${{ matrix.package }}/mix.lock') }}
5859
${{ runner.os }}-${{ matrix.package }}-build-${{ env.MIX_ENV }}-
5960
${{ runner.os }}-${{ matrix.package }}-build-
6061
62+
- name: Debug
63+
run: |
64+
ls -l deps
65+
ls -l _build || true
66+
ls -l _build/* || true
67+
6168
- name: Install dependencies
6269
run: mix deps.get
6370

0 commit comments

Comments
 (0)