-
Notifications
You must be signed in to change notification settings - Fork 6
66 lines (56 loc) · 1.72 KB
/
lint_and_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
name: Perform linting and run tests
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
check-formatting:
runs-on: ubuntu-latest
if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')"
name: Check formatting
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Elixir and OTP
uses: erlef/setup-beam@v1
with:
otp-version: "27.x"
elixir-version: "1.17.x"
- name: Install and compile dependencies
run: mix deps.get && mix deps.compile &> /dev/null
- name: Check formatting
run: mix format --check-formatted
test-matrix:
runs-on: ubuntu-latest
if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')"
name: Test on OTP ${{ matrix.versions.otp }} / Elixir ${{ matrix.versions.elixir }}
env:
MIX_ENV: test
strategy:
matrix:
versions:
[
{ otp: "24.x", elixir: "1.13.x" },
{ otp: "25.x", elixir: "1.14.x" },
{ otp: "26.x", elixir: "1.15.x" },
{ otp: "26.x", elixir: "1.16.x" },
{ otp: "27.x", elixir: "1.17.x" },
]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Elixir and OTP
uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.versions.otp }}
elixir-version: ${{ matrix.versions.elixir }}
- name: Install and compile dependencies
run: mix deps.get && mix deps.compile &> /dev/null
- name: Compile project with warnings as errors
run: mix compile --warnings-as-errors
- name: Run tests
run: mix test