-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from ts-klassen/main
Initial implementation
- Loading branch information
Showing
13 changed files
with
1,434 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
name: Erlang CI | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
|
||
erlang24: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
container: | ||
image: erlang:24 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Compile | ||
run: rebar3 compile | ||
- name: Run tests | ||
run: rebar3 do eunit, ct | ||
|
||
erlang25: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
container: | ||
image: erlang:25 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Compile | ||
run: rebar3 compile | ||
- name: Run tests | ||
run: rebar3 do eunit, ct | ||
|
||
erlang26: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
container: | ||
image: erlang:26 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Compile | ||
run: rebar3 compile | ||
- name: Run tests | ||
run: rebar3 do eunit, ct |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
.rebar3 | ||
_* | ||
.eunit | ||
*.o | ||
*.beam | ||
*.plt | ||
*.swp | ||
*.swo | ||
.erlang.cookie | ||
ebin | ||
log | ||
erl_crash.dump | ||
.rebar | ||
logs | ||
_build | ||
.idea | ||
*.iml | ||
rebar3.crashdump | ||
*~ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# CHANGELOG | ||
|
||
@todo | ||
## UNRELEASED 0.1.0 | ||
### New Feature | ||
- Initial implementation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
{erl_opts, [debug_info]}. | ||
{deps, []}. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{application, sqids, | ||
[{description, "An OTP library"}, | ||
{vsn, "0.1.0"}, | ||
{registered, []}, | ||
{applications, | ||
[kernel, | ||
stdlib | ||
]}, | ||
{env,[]}, | ||
{modules, []}, | ||
|
||
{licenses, ["MIT License"]}, | ||
{links, []} | ||
]}. |
Oops, something went wrong.