Skip to content

Commit

Permalink
Testing if removing the cache helps
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanjos committed Jun 13, 2024
1 parent d340e21 commit 9a55465
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,16 @@ jobs:
elixir-version: ${{ matrix.elixir }}
otp-version: ${{ matrix.otp }}

- name: Restore deps cache
uses: actions/cache@v2
with:
path: |
deps
_build
key: deps-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }}-${{ github.sha }}
restore-keys: |
deps-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }}
deps-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}
# - name: Restore deps cache
# uses: actions/cache@v2
# with:
# path: |
# deps
# _build
# key: deps-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }}-${{ github.sha }}
# restore-keys: |
# deps-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }}
# deps-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}

- name: Install package dependencies
run: mix deps.get
Expand All @@ -71,15 +71,15 @@ jobs:
env:
SCHEMA_PROVIDER: persistent_term

- name: Cache/uncache PLTs
uses: actions/cache@v3
with:
path: |
priv/plts
key: "v1-${{ runner.os }}-\
erlang-${{ matrix.otp }}-\
elixir-${{ matrix.elixir }}-\
${{ hashFiles('mix.lock') }}"
# - name: Cache/uncache PLTs
# uses: actions/cache@v3
# with:
# path: |
# priv/plts
# key: "v1-${{ runner.os }}-\
# erlang-${{ matrix.otp }}-\
# elixir-${{ matrix.elixir }}-\
# ${{ hashFiles('mix.lock') }}"

- name: Run Dialyzer
run: mix dialyzer

0 comments on commit 9a55465

Please sign in to comment.