Skip to content

Commit 686b54a

Browse files
committed
try removing caching for now to fix CI
1 parent fdf7b8e commit 686b54a

File tree

1 file changed

+3
-21
lines changed

1 file changed

+3
-21
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -82,33 +82,15 @@ jobs:
8282
elixir-version: ${{ env.ELIXIR_VERSION }}
8383
otp-version: ${{ env.OTP_VERSION }}
8484

85-
- name: Restore dependencies cache
86-
uses: actions/cache@v4
87-
with:
88-
path: |
89-
deps
90-
_build
91-
key: ${{ runner.os }}-mix-${{ env.ELIXIR_VERSION }}-${{ env.OTP_VERSION }}-${{ hashFiles('**/mix.lock') }}
92-
restore-keys: |
93-
${{ runner.os }}-mix-${{ env.ELIXIR_VERSION }}-${{ env.OTP_VERSION }}-
94-
95-
- name: Restore PLT cache
96-
uses: actions/cache@v4
97-
with:
98-
path: priv/plts
99-
key: ${{ runner.os }}-plt-${{ env.ELIXIR_VERSION }}-${{ env.OTP_VERSION }}-${{ hashFiles('**/mix.lock') }}
100-
restore-keys: |
101-
${{ runner.os }}-plt-${{ env.ELIXIR_VERSION }}-${{ env.OTP_VERSION }}-
102-
103-
- name: Install dependencies
104-
run: mix deps.get
105-
10685
- name: Create SQL Server database
10786
run: |
10887
sleep 10
10988
docker exec ${{ job.services.mssql.id }} /opt/mssql-tools18/bin/sqlcmd \
11089
-S localhost -U sa -P 'SqlKit123!' -C \
11190
-Q "CREATE DATABASE sql_kit_test"
11291
92+
- name: Install dependencies
93+
run: mix deps.get
94+
11395
- name: Run mix check
11496
run: mix check

0 commit comments

Comments
 (0)