File tree 3 files changed +30
-12
lines changed
3 files changed +30
-12
lines changed Original file line number Diff line number Diff line change
1
+ name : test
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+ - main
8
+ pull_request :
9
+
10
+ jobs :
11
+ test :
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - uses : actions/checkout@v4
15
+ - uses : erlef/setup-beam@v1
16
+ with :
17
+ otp-version : " 26.0.2"
18
+ gleam-version : " 1.2.1"
19
+ rebar3-version : " 3"
20
+ # elixir-version: "1.15.4"
21
+ - run : gleam deps download
22
+ - run : gleam test
23
+ - run : gleam format --check src test
24
+ - run : gleam publish
Original file line number Diff line number Diff line change @@ -2,9 +2,6 @@ name: test
2
2
3
3
on :
4
4
push :
5
- branches :
6
- - master
7
- - main
8
5
pull_request :
9
6
10
7
jobs :
Original file line number Diff line number Diff line change 1
1
name = " parz"
2
2
version = " 1.0.0"
3
3
4
- # Fill out these fields if you intend to generate HTML documentation or publish
5
- # your project to the Hex package manager.
6
- #
7
- # description = ""
8
- # licences = ["Apache-2.0"]
9
- # repository = { type = "github", user = "username", repo = "project" }
4
+ description = " A simple parser combinator library"
5
+ licences = [" Apache-2.0" ]
6
+ repository = { type = " github" , user = " sftsrv" , repo = " parz" }
10
7
# links = [{ title = "Website", href = "https://gleam.run" }]
11
- #
12
- # For a full reference of all the available options, you can have a look at
13
- # https://gleam.run/writing-gleam/gleam-toml/.
8
+
9
+ For a full reference of all the available options, you can have a look at
10
+ https://gleam.run/writing-gleam/gleam-toml/.
14
11
15
12
[dependencies ]
16
13
gleam_stdlib = " >= 0.34.0 and < 2.0.0"
You can’t perform that action at this time.
0 commit comments