We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent feba5f9 commit 2a83f79Copy full SHA for 2a83f79
.github/workflows/cicd.yml
@@ -24,17 +24,13 @@ jobs:
24
25
steps:
26
- 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
31
- name: Check rebar3 Version
32
- run: DEBUG=1 ./rebar3 --version
+ run: DEBUG=1 rebar3 --version
33
- name: Compile
34
- run: ./rebar3 compile
+ run: rebar3 compile
35
- name: Xref Check
36
- run: ./rebar3 xref
+ run: rebar3 xref
37
- name: Run Tests
38
- run: ./rebar3 as test eunit
+ run: rebar3 as test eunit
39
- name: Run Tests (ltest runner)
40
run: make check-runner-ltest
0 commit comments