We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6ea34bf + cd5bea0 commit 0bdad97Copy full SHA for 0bdad97
.github/workflows/test.yml
@@ -18,7 +18,7 @@ jobs:
18
elixir: "1.12"
19
otp: "22"
20
- pair:
21
- elixir: "1.17"
+ elixir: "1.18"
22
otp: "27"
23
lint: true
24
@@ -33,7 +33,7 @@ jobs:
33
otp-version: ${{ matrix.pair.otp }}
34
35
- name: Restore deps cache
36
- uses: actions/cache@v3
+ uses: actions/cache@v4
37
with:
38
path: |
39
deps
test/support/star_wars/database.ex
@@ -83,7 +83,7 @@ defmodule StarWars.Database do
83
end
84
85
def get_factions(names) do
86
- factions = data().factions |> Map.values()
+ factions = data().faction |> Map.values()
87
88
names
89
|> Enum.map(fn name ->
0 commit comments