Skip to content

Commit f3ea478

Browse files
committed
chore: build fixes
1 parent 1286c25 commit f3ea478

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/dialyzer.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ jobs:
2626
_build
2727
deps
2828
dialyzer
29-
key: ${{ runner.os }}-dialyzer-${{ hashFiles('**/mix.lock') }}-${{ hashFiles('./.tool-versions') }}
30-
restore-keys: ${{ runner.os }}-dialyzer-
29+
key: ${{ runner.os }}-dialyzer-v1-${{ hashFiles('./mix.lock') }}-${{ hashFiles('./.tool-versions') }}
30+
restore-keys: ${{ runner.os }}-dialyzer-v1-
3131

3232
- name: Install Dependencies
3333
run: mix deps.get

lib/cache_test_modules.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
if System.get_env("IS_CI") == "true" do
1+
if System.get_env("IS_CI") === "true" do
22
defmodule TestCache.Redis do
33
use Cache,
44
adapter: Cache.Redis,

test/cache_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ defmodule CacheTest do
1414
@adapters Enum.map(@adapter_configs, fn {adapter, config} ->
1515
suffix = Keyword.get(config, :name_suffix, adapter |> Module.split() |> List.last())
1616
module_name = Module.concat(CacheTest.TestCache, suffix)
17-
cache_name = :"test_cache_#{suffix |> Macro.underscore()}"
17+
cache_name = :"test_cache_#{Macro.underscore(suffix)}"
1818
opts = Keyword.get(config, :opts, [])
1919

2020
module_contents = quote do

0 commit comments

Comments
 (0)