-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (41 loc) · 1.04 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: nbully ci
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
REBAR3-VERSION: 3.22.1
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
otp: ['25.3.2', '26.2.1']
steps:
- uses: actions/checkout@v3
- uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp }}
rebar3-version: ${{ env.REBAR3-VERSION }}
- uses: actions/[email protected]
id: rebar3-cache
with:
path: |
~/.cache/rebar3
_build
key: ${{ runner.os }}-${{ matrix.otp }}-${{ env.REBAR3-VERSION }}-${{ hashFiles('rebar.lock') }}
- name: Compile
run: |
rebar3 clean
rebar3 compile
- run: rebar3 check
- run: rebar3 test
- name: Create test summary
uses: test-summary/action@v2
if: always()
with:
paths: '_build/test/logs/**/report.xml'