Skip to content

Commit 2a83f79

Browse files
committed
Use the rebar on the image.
1 parent feba5f9 commit 2a83f79

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

.github/workflows/cicd.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,13 @@ jobs:
2424

2525
steps:
2626
- uses: actions/checkout@v2
27-
- name: Download rebar3
28-
run: wget https://github.com/erlang/rebar3/releases/download/3.15.2/rebar3 && chmod 755 ./rebar3
29-
- name: Update Path
30-
run: echo "./" >> $GITHUB_PATH
3127
- name: Check rebar3 Version
32-
run: DEBUG=1 ./rebar3 --version
28+
run: DEBUG=1 rebar3 --version
3329
- name: Compile
34-
run: ./rebar3 compile
30+
run: rebar3 compile
3531
- name: Xref Check
36-
run: ./rebar3 xref
32+
run: rebar3 xref
3733
- name: Run Tests
38-
run: ./rebar3 as test eunit
34+
run: rebar3 as test eunit
3935
- name: Run Tests (ltest runner)
4036
run: make check-runner-ltest

0 commit comments

Comments
 (0)