Skip to content

Commit

Permalink
Add ex_doc, fix Makefile (#59)
Browse files Browse the repository at this point in the history
* Add ex_doc, fix Makefile

* Update ci.yml (add otp 26)
  • Loading branch information
uwiger authored Oct 8, 2023
1 parent cdb01ba commit d99fb36
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
otp: [21, 22, 23, 24, 25]
otp: [21, 22, 23, 24, 25, 26]
fail-fast: false
container:
image: erlang:${{ matrix.otp }}
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ test:
$(REBAR3) eunit

doc:
$(REBAR3) doc
$(REBAR3) edoc

13 changes: 11 additions & 2 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,20 @@
]}.
{xref_checks, [undefined_function_calls]}.

{ex_doc, [
{extras, ["README.md", "LICENSE"]},
{main, "README.md"},
{source_url, "https://github.com/uwiger/parse_trans"}
]}.

{hex, [{doc, ex_doc}]}.

{profiles,
[{docs,
[{doc,
[
{deps, [{edown, "0.8.4"}]},
{deps, [{edown, "0.9.1"}]},
{edoc_opts, [{doclet, edown_doclet},
{branch, "master"},
{top_level_readme,
{"./README.md",
"http://github.com/uwiger/parse_trans",
Expand Down

0 comments on commit d99fb36

Please sign in to comment.