We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3372df commit 7a9f17dCopy full SHA for 7a9f17d
.github/workflows/quality.yml
@@ -65,8 +65,10 @@ jobs:
65
path: |
66
deps
67
_build
68
- key: ${{ runner.os }}-mix-dev-${{ env.elixir_version }}-${{ env.otp_version }}-${{ hashFiles('**/mix.lock') }}
69
- restore-keys: ${{ runner.os }}-mix-dev-${{ env.elixir_version }}-${{ env.otp_version }}-
+ # Dialyzer uses PLT files for caching project info. These are in _build/dev/, but they're only created
+ # when running dialyzer for the first time, and updated when the deps change.
70
+ key: ${{ runner.os }}-plts-${{ env.elixir_version }}-${{ env.otp_version }}-${{ hashFiles('**/mix.lock') }}
71
+ restore-keys: ${{ runner.os }}-plts-${{ env.elixir_version }}-${{ env.otp_version }}-
72
73
- name: Install Mix dependencies
74
run: mix deps.get
0 commit comments