Skip to content

Commit 9377f36

Browse files
committed
Fixing GH actions
1 parent aca6611 commit 9377f36

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@ jobs:
2626
uses: actions/cache@v2
2727
with:
2828
path: deps
29-
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
30-
restore-keys: ${{ runner.os }}-mix-
29+
key: ${{ runner.os }}-mix-v2-${{ hashFiles('**/mix.lock') }}
30+
restore-keys: ${{ runner.os }}-mix-v2-
3131
- name: Install dependencies
3232
run: mix deps.get
3333
- name: Restore PLT cache
3434
uses: actions/cache@v2
3535
with:
3636
path: priv/plts
37-
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
38-
restore-keys: ${{ runner.os }}-mix-
37+
key: ${{ runner.os }}-mix-v2-${{ hashFiles('**/mix.lock') }}
38+
restore-keys: ${{ runner.os }}-mix-v2-
3939
- name: Mix Formatter
4040
run: mix format --check-formatted
4141
- name: Check for compiler warnings
@@ -72,8 +72,8 @@ jobs:
7272
uses: actions/cache@v2
7373
with:
7474
path: deps
75-
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
76-
restore-keys: ${{ runner.os }}-mix-
75+
key: ${{ runner.os }}-mix-v2-${{ hashFiles('**/mix.lock') }}
76+
restore-keys: ${{ runner.os }}-mix-v2-
7777
- name: Install dependencies
7878
run: mix deps.get
7979
- name: ExUnit tests

0 commit comments

Comments
 (0)