File tree Expand file tree Collapse file tree 4 files changed +8
-6
lines changed Expand file tree Collapse file tree 4 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 15
15
- name : Set up Beam
16
16
uses : erlef/setup-beam@v1
17
17
with :
18
- otp-version : ' 26.2 '
19
- elixir-version : ' 1.16 .0'
18
+ otp-version : ' 27 '
19
+ elixir-version : ' 1.18 .0'
20
20
- name : Dependencies
21
21
working-directory : elixir
22
22
run : mix deps.get
Original file line number Diff line number Diff line change 8
8
- [ elixir] ( https://elixir-lang.org/install.html )
9
9
<details ><summary >Elixir Version</summary >
10
10
11
- The kata is configured to run with Elixir version 1.16 by default.
11
+ The kata is configured to run with Elixir version 1.18 by default.
12
12
13
13
To use a different version, simply modify the line below in [ mix.exs] ( mix.exs ) .
14
14
15
15
``` text
16
- elixir: "~> 1.16 ",
16
+ elixir: "~> 1.18 ",
17
17
```
18
18
</details>
19
19
Original file line number Diff line number Diff line change 1
- # Copyright (c) 2023 Murex
1
+ # Copyright (c) 2024 Murex
2
2
#
3
3
# Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
# of this software and associated documentation files (the "Software"), to deal
20
20
21
21
defmodule BowlingGame do
22
22
23
+ @ spec score ( [ integer ( ) ] ) :: integer ( )
23
24
def score ( _rolls ) do
24
25
# TODO - Implement me!
26
+ 0
25
27
end
26
28
27
29
end
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ defmodule BowlingGame.MixProject do
5
5
[
6
6
app: :bowling_game ,
7
7
version: "0.1.0" ,
8
- elixir: "~> 1.16 " ,
8
+ elixir: "~> 1.18 " ,
9
9
start_permanent: Mix . env ( ) == :prod ,
10
10
deps: deps ( )
11
11
]
You can’t perform that action at this time.
0 commit comments