-
Notifications
You must be signed in to change notification settings - Fork 0
172 lines (150 loc) · 3.86 KB
/
elixir.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
name: Elixir Tests
on:
push:
pull_request:
jobs:
#
# Run tests on all supported Elixir versions
#
test:
name: mix test (Elixir ${{ matrix.elixir }} OTP ${{ matrix.otp }})
strategy:
matrix:
elixir: ['1.8.0', '1.8.2', '1.9.4', '1.10.4', '1.10.x', '1.11.4', '1.11.x', '1.12.3', '1.12.x', '1.13.3', '1.13.4', '1.13.x', '1.14.1', '1.14.x']
include:
- elixir: '1.8.0'
otp: '21.x'
- elixir: '1.8.2'
otp: '21.x'
- elixir: '1.9.4'
otp: '22.x'
- elixir: '1.10.4'
otp: '22.x'
- elixir: '1.10.x'
otp: '23.x'
- elixir: '1.11.4'
otp: '22.x'
- elixir: '1.11.x'
otp: '23.x'
- elixir: '1.12.3'
otp: '23.x'
- elixir: '1.12.x'
otp: '24.x'
- elixir: '1.13.3'
otp: '23.x'
- elixir: '1.13.4'
otp: '24.x'
- elixir: '1.13.x'
otp: '25.x'
- elixir: '1.14.1'
otp: '24.x'
- elixir: '1.14.x'
otp: '25.x'
runs-on: ubuntu-20.04
env:
MIX_ENV: test
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp }}
elixir-version: ${{ matrix.elixir }}
- name: Install Dependencies
run: |
mix local.rebar --force
mix local.hex --force
mix deps.get --only=test
- name: Run Tests
run: mix test
#
# Do static code analysis with Credo
#
credo:
name: mix credo (Elixir ${{ matrix.elixir }} OTP ${{ matrix.otp }})
strategy:
matrix:
elixir: ['1.14.x']
include:
- elixir: '1.14.x'
otp: '25.x'
runs-on: ubuntu-20.04
env:
MIX_ENV: dev
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp }}
elixir-version: ${{ matrix.elixir }}
- name: Install Dependencies
run: |
mix local.rebar --force
mix local.hex --force
mix deps.get --only=dev
- name: Run Credo
run: mix credo --strict
#
# Do static code analysis with Dialyzer
#
dialyzer:
name: mix dialyzer (Elixir ${{ matrix.elixir }} OTP ${{ matrix.otp }})
strategy:
matrix:
elixir: ['1.14.x']
include:
- elixir: '1.14.x'
otp: '25.x'
runs-on: ubuntu-20.04
env:
MIX_ENV: dev
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp }}
elixir-version: ${{ matrix.elixir }}
- name: Install Dependencies
run: |
mix local.rebar --force
mix local.hex --force
mix deps.get --only=dev
- name: Fetch PLT Cache
uses: actions/cache@v2
with:
path: priv/plts
key: ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-plts-v2-${{ hashFiles('**/mix.lock') }}
- name: Generate PLTs
if: steps.fetch-plt-cache.outputs.cache-hit != 'true'
run: |
mkdir -p priv/plts
mix dialyzer --plt
- name: Run Dialyzer
run: mix dialyzer --no-check
#
# Do coverage report with ExCoveralls
#
coveralls:
name: mix coveralls (Elixir ${{ matrix.elixir }} OTP ${{ matrix.otp }})
strategy:
matrix:
elixir: ['1.14.x']
include:
- elixir: '1.14.x'
otp: '25.x'
runs-on: ubuntu-20.04
env:
MIX_ENV: dev
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp }}
elixir-version: ${{ matrix.elixir }}
- name: Install Dependencies
run: |
mix local.rebar --force
mix local.hex --force
mix deps.get --only=dev
- name: Run Tests
run: mix coveralls.github