Skip to content

Commit

Permalink
Use the rebar on the image.
Browse files Browse the repository at this point in the history
  • Loading branch information
oubiwann committed Jan 2, 2023
1 parent feba5f9 commit 2a83f79
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,13 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Download rebar3
run: wget https://github.com/erlang/rebar3/releases/download/3.15.2/rebar3 && chmod 755 ./rebar3
- name: Update Path
run: echo "./" >> $GITHUB_PATH
- name: Check rebar3 Version
run: DEBUG=1 ./rebar3 --version
run: DEBUG=1 rebar3 --version
- name: Compile
run: ./rebar3 compile
run: rebar3 compile
- name: Xref Check
run: ./rebar3 xref
run: rebar3 xref
- name: Run Tests
run: ./rebar3 as test eunit
run: rebar3 as test eunit
- name: Run Tests (ltest runner)
run: make check-runner-ltest

0 comments on commit 2a83f79

Please sign in to comment.