Skip to content

Commit

Permalink
fixing the plt cache retrieval (#41)
Browse files Browse the repository at this point in the history
* fixing the plt cache retrieval
* updating elsa latest
  • Loading branch information
jeffgrunewald authored Mar 6, 2020
1 parent 1bdcd89 commit 224a014
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,11 @@ jobs:
uses: actions/cache@v1
with:
path: .plt
key: dialyzer-plt
key: plt-${{ github.head_ref }}
restore-keys: |
plt-${{ github.head_ref }}
plt-master
plt-
- name: Get dependencies
run: |
mix local.rebar --force
Expand Down
28 changes: 28 additions & 0 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Master
on:
push:
branches:
- master
jobs:
dialyzer:
name: Cache PLT
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/[email protected]
with:
otp-version: 21.3
elixir-version: 1.8.2
- name: Get dependencies
run: |
mix local.rebar --force
mix local.hex --force
mix deps.get
- name: Retrieve PLT
uses: actions/cache@v1
with:
path: .plt
key: plt-master
- name: Run dialyzer
run: |
mix dialyzer
2 changes: 1 addition & 1 deletion mix.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"divo_kafka": {:hex, :divo_kafka, "0.1.6", "dffaa5d419d75e6607b581187347e6fef18b9d06d517a0f7a49772b52f60115f", [:mix], [{:divo, "~> 1.1", [hex: :divo, repo: "hexpm", optional: false]}], "hexpm", "cbc408a8b6593784524b5fee09aae0e9cc58328a174fc6d3f337d9fb34b4bc62"},
"divo_redis": {:hex, :divo_redis, "0.1.4", "f5bbe82ce88bdd0ea54d6b14cd8dc1a800b872f0e488e6f2715b95cd6f349ee7", [:mix], [{:divo, "~> 1.1", [hex: :divo, repo: "hexpm", optional: false]}], "hexpm", "c85a10097a73b22a2ee1137af3af5c68bb5a6917c0147ffef3643ed82e41be46"},
"earmark": {:hex, :earmark, "1.4.3", "364ca2e9710f6bff494117dbbd53880d84bebb692dafc3a78eb50aa3183f2bfd", [:mix], [], "hexpm", "8cf8a291ebf1c7b9539e3cddb19e9cef066c2441b1640f13c34c1d3cfc825fec"},
"elsa": {:hex, :elsa, "0.12.0", "aeaab962c591aa599d8beb7838c210187264b85b0c572639ffd6f690faf779f6", [:mix], [{:brod, "~> 3.9", [hex: :brod, repo: "hexpm", optional: false]}], "hexpm", "8decfb8b9164c7ce36485ce826d786f8354bee4da147129a8b659bbd2ac08d23"},
"elsa": {:hex, :elsa, "0.12.1", "6fa0398383ee290f7af64b4dce67848e2106d8ceec25cba6bf6b52bd80a400b2", [:mix], [{:brod, "~> 3.9", [hex: :brod, repo: "hexpm", optional: false]}], "hexpm", "ab4f3e279ace1724e11d1cca38cc1ea70b640224e801b2bbce06d7dba75d807d"},
"erlex": {:hex, :erlex, "0.2.5", "e51132f2f472e13d606d808f0574508eeea2030d487fc002b46ad97e738b0510", [:mix], [], "hexpm", "756d3e19b056339af674b715fdd752c5dac468cf9d0e2d1a03abf4574e99fbf8"},
"ex_doc": {:hex, :ex_doc, "0.21.3", "857ec876b35a587c5d9148a2512e952e24c24345552259464b98bfbb883c7b42", [:mix], [{:earmark, "~> 1.4", [hex: :earmark, repo: "hexpm", optional: false]}, {:makeup_elixir, "~> 0.14", [hex: :makeup_elixir, repo: "hexpm", optional: false]}], "hexpm", "0db1ee8d1547ab4877c5b5dffc6604ef9454e189928d5ba8967d4a58a801f161"},
"jason": {:hex, :jason, "1.1.2", "b03dedea67a99223a2eaf9f1264ce37154564de899fd3d8b9a21b1a6fd64afe7", [:mix], [{:decimal, "~> 1.0", [hex: :decimal, repo: "hexpm", optional: true]}], "hexpm", "fdf843bca858203ae1de16da2ee206f53416bbda5dc8c9e78f43243de4bc3afe"},
Expand Down

0 comments on commit 224a014

Please sign in to comment.