diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..9828748 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,11 @@ +name: test +run-name: Build & Test +on: [push] +jobs: + test: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v4 + - uses: erlef/setup-beam@v1 + - run: rebar3 compile + - run: rebar3 eunit \ No newline at end of file diff --git a/.tool-versions b/.tool-versions new file mode 100644 index 0000000..8a497c5 --- /dev/null +++ b/.tool-versions @@ -0,0 +1,2 @@ +erlang 25.3.2.7 +rebar3 3.22.1 \ No newline at end of file diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 07eb23e..0000000 --- a/.travis.yml +++ /dev/null @@ -1,8 +0,0 @@ -language: erlang -otp_release: - - 24.1 - - 23.0 - - 22.0 - - 21.0 - - 20.3 -script: rebar3 do compile, eunit