-
Notifications
You must be signed in to change notification settings - Fork 93
74 lines (64 loc) · 2.07 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
name: ci
on:
push:
branches: [main, 'release/**', 'task/**', 'feature/**', 'epic/**']
tags: ['**']
pull_request:
branches: [main, 'release/**', 'task/**', 'feature/**', 'epic/**']
jobs:
older-rebar-builds:
name: Build on OTP ${{ matrix.otp_version }} w/ rebar ${{ matrix.rebar3-version }}
runs-on: ubuntu-latest
strategy:
matrix:
otp_version: [19, 20, 21, 22, 23, 24]
rebar3-version: ['3.15.2']
os: [ubuntu-latest]
container:
image: erlang:${{ matrix.otp_version }}
steps:
- uses: actions/checkout@v2
- name: Download Recent Rebar
run: wget https://github.com/erlang/rebar3/releases/download/${{ matrix.rebar3-version }}/rebar3 && chmod 755 ./rebar3
- name: Update Path
run: echo "./" >> $GITHUB_PATH
- name: Check ./rebar3 Version
run: ./rebar3 --version
- name: Compile
run: ./rebar3 compile
- name: Xref Checks
run: ./rebar3 xref
- name: Dialyzer
run: ./rebar3 dialyzer
- name: Run Tests
run: ./rebar3 eunit -v
- name: Test Coverage
run: ./rebar3 as test do proper -c, cover -v --min_coverage=0
newer-rebar-builds:
name: Build on OTP ${{ matrix.otp_version }} w/ rebar ${{ matrix.rebar3-version }}
runs-on: ubuntu-latest
strategy:
matrix:
otp_version: [22, 23, 24, 25, 26, 27]
rebar3-version: ['3.16.1']
os: [ubuntu-latest]
container:
image: erlang:${{ matrix.otp_version }}
steps:
- uses: actions/checkout@v2
- name: Download Recent Rebar
run: wget https://github.com/erlang/rebar3/releases/download/${{ matrix.rebar3-version }}/rebar3 && chmod 755 ./rebar3
- name: Update Path
run: echo "./" >> $GITHUB_PATH
- name: Check ./rebar3 Version
run: ./rebar3 --version
- name: Compile
run: ./rebar3 compile
- name: Xref Checks
run: ./rebar3 xref
- name: Dialyzer
run: ./rebar3 dialyzer
- name: Run Tests
run: ./rebar3 eunit -v
- name: Test Coverage
run: ./rebar3 as test do proper -c, cover -v --min_coverage=0