-
Notifications
You must be signed in to change notification settings - Fork 96
70 lines (59 loc) · 1.59 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
name: Elixir CI
on:
pull_request:
push:
branches:
- master
env:
MIX_ENV: test
jobs:
mix_test:
name: mix test (Elixir ${{matrix.elixir}} | OTP ${{matrix.otp}})
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
include:
- elixir: '1.7.x'
otp: 22.3.4.26
- elixir: '1.8.x'
otp: 22.3.4.26
- elixir: '1.9.x'
otp: 22.3.4.26
- elixir: '1.10.x'
otp: 22.3.4.26
- elixir: '1.11.x'
otp: 23.3.4.18
- elixir: '1.12.x'
otp: 24
- elixir: '1.13.x'
otp: 25.1
- elixir: '1.14.x'
otp: 25.1
- elixir: '1.15.x'
otp: 26.0
steps:
- name: Setup Elixir
uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp }}
elixir-version: ${{ matrix.elixir }}
- name: Checkout Code
uses: actions/checkout@v3
- name: Install Dependencies
run: |
mix local.hex --force
mix local.rebar --force
mix deps.get --only test
- name: Hex Audit
run: mix hex.audit
- name: Check Formatting
if: ${{ matrix.elixir == '1.15.x' }} # we only care about formatting for latest version of Elixir
run: mix format --check-formatted
- name: Compiles w/o Warnings
if: ${{ matrix.elixir == '1.15.x' }} # we only care about warnings for latest version of Elixir
run: mix compile --warnings-as-errors
- name: Credo
run: mix credo --all --strict
- name: Run Tests
run: mix test