Skip to content

Commit

Permalink
rebar support
Browse files Browse the repository at this point in the history
  • Loading branch information
shortishly committed May 31, 2023
1 parent 4d22dd4 commit 0a3106d
Show file tree
Hide file tree
Showing 5 changed files with 288 additions and 918 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
ebin/any.app -diff
erlang.mk -diff
rebar.config -diff
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: make deps app dialyze tests
run: make all dialyze tests
25 changes: 13 additions & 12 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
*~
*.d
*.plt
erl_crash.dump
deps
.eunit
*~
.DS_Store
.erlang.mk
.erlang.mk.*
ebin
.eunit
\#*\#
_rel
relx
logs
.erlang.mk
cover
db
xrefr
*.d
deps
ebin/*.beam
ebin/test
elvis
elvis.config
cover
\#*\#
erl_crash.dump
logs
relx
xrefr
9 changes: 9 additions & 0 deletions ebin/any.app
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{application, 'any', [
{description, ""},
{vsn, "rolling"},
{modules, ['any']},
{registered, []},
{applications, [kernel,stdlib]},
{optional_applications, []},
{env, []}
]}.
Loading

0 comments on commit 0a3106d

Please sign in to comment.