-
Notifications
You must be signed in to change notification settings - Fork 232
48 lines (41 loc) · 941 Bytes
/
main.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
name: Common Test
on:
pull_request:
branches:
- 'main'
push:
branches:
- 'main'
jobs:
linux:
name: Test on OTP ${{ matrix.otp_version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
otp_version: [23, 24, 26]
os: [ubuntu-20.04] # latest only runs >= 24.2
container:
image: erlang:${{ matrix.otp_version }}
steps:
- uses: actions/checkout@v2
- name: Compile
run: rebar3 compile
- name: CT tests
run: rebar3 ct
- name: Xref
run: rebar3 xref
- name: Dialyzer
run: rebar3 dialyzer
macos:
name: Test on MacOS
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Install Erlang
run: brew install erlang
- name: Install rebar3
run: |
wget https://s3.amazonaws.com/rebar3/rebar3
chmod +x rebar3
- name: CT tests
run: ./rebar3 ct