-
Notifications
You must be signed in to change notification settings - Fork 8
109 lines (106 loc) · 3.24 KB
/
test.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
name: Test
on:
pull_request:
branches:
- "main"
push:
branches:
- "main"
jobs:
format:
name: Check formatting
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: "25.1.2"
elixir-version: "1.14.2"
- run: mix format --check-formatted
test:
name: Test on Elixir ${{ matrix.elixir }} (OTP ${{ matrix.otp }})
runs-on: ubuntu-20.04
strategy:
matrix:
otp: ["23.3.4.18", "24.3.4.6"]
elixir: ["1.12.3", "1.13.4", "1.14.2"]
include:
# Only Elixir 1.14 supports OTP 25
- otp: "25.1.2"
elixir: "1.14.2"
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp }}
elixir-version: ${{ matrix.elixir }}
- uses: actions/cache@v3
name: Cache dependencies
with:
path: |
deps
key: deps-${{ hashFiles('mix.lock') }}
restore-keys: |
deps-${{ hashFiles('mix.lock') }}
deps-
- run: mix deps.get
- uses: actions/cache@v3
name: Cache build
with:
path: |
_build
key: build-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('mix.lock') }}
restore-keys: |
build-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('mix.lock') }}
build-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-
- run: mix test
dialyze:
name: Dialyze on Elixir ${{ matrix.elixir }} (OTP ${{ matrix.otp }})
runs-on: ubuntu-20.04
strategy:
matrix:
otp: ["23.3.4.18", "24.3.4.6"]
elixir: ["1.12.3", "1.13.4", "1.14.2"]
include:
# Only Elixir 1.14 supports OTP 25
- otp: "25.1.2"
elixir: "1.14.2"
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp }}
elixir-version: ${{ matrix.elixir }}
- uses: actions/cache@v3
name: Cache dependencies
with:
path: |
deps
key: deps-${{ hashFiles('mix.lock') }}
restore-keys: |
deps-${{ hashFiles('mix.lock') }}
deps-
- run: mix deps.get
- uses: actions/cache@v3
name: Cache build
with:
path: |
_build
key: build-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('mix.lock') }}
restore-keys: |
build-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('mix.lock') }}
build-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-
- uses: actions/cache@v3
name: Restore PLT cache
id: plt_cache
with:
path: |
priv/plts
key: plt-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}
restore-keys: |
plt-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}
- name: Create PLTs
if: steps.plt_cache.outputs.cache-hit != 'true'
run: mix dialyzer --plt
- name: Run dialyzer
run: mix dialyzer --format github