This repository has been archived by the owner on Apr 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
81 lines (66 loc) · 1.84 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
75
76
77
78
79
80
81
name: CI
env:
MIX_ENV: ci
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CC: clang
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: OTP ${{matrix.otp}} | Elixir ${{matrix.elixir}} | ${{matrix.cc}}
runs-on: ubuntu-latest
strategy:
matrix:
otp: [25, 24]
elixir: ['1.15', '1.14', '1.13']
cc: [gcc, clang]
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
deps
_build
key: ${{ runner.os }}-${{matrix.otp}}-${{matrix.elixir}}-${{matrix.cc}}-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
restore-keys: |
${{ runner.os }}-${{matrix.otp}}-${{matrix.elixir}}-${{matrix.cc}}-
${{ runner.os }}-${{matrix.otp}}-${{matrix.elixir}}-
${{ runner.os }}-${{matrix.otp}}-
${{ runner.os }}-
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- run: mix deps.get
- run: mix compile
env:
CC: ${{ matrix.cc }}
- run: mix test
quality:
name: Quality checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
deps
_build
key: ${{ runner.os }}-quality-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
restore-keys: |
${{ runner.os }}-quality
- uses: erlef/setup-beam@v1
with:
otp-version: 25
elixir-version: '1.15'
- run: mix deps.get
- run: mix compile
- run: mix credo --strict
- run: mix inch.report
- run: mix hex.outdated
# skip step for dependabot, since it is the reason it opens a PR
if: github.actor != 'dependabot[bot]'
- run: mix coveralls.github