-
Notifications
You must be signed in to change notification settings - Fork 33
55 lines (49 loc) · 1.1 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
name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
env:
MIX_ENV: test
strategy:
fail-fast: false
matrix:
include:
- elixir: '1.15.8'
otp: '25.3.2.15'
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- name: Cache build artifacts
uses: actions/cache@v4
with:
path: |
~/.hex
~/.mix
_build
priv/plts
key: otp:${{ matrix.otp }}-elixir:${{ matrix.elixir }}-mix-lock:${{ hashFiles('**/mix.lock') }}
- name: Install Dependencies
run: |
mix local.rebar --force
mix local.hex --force
mix deps.get
- name: Compile Deps
run: mix deps.compile
- name: Compile
run: mix compile --warnings-as-errors
- name: Format check
run: mix format --check-formatted
- name: Run Tests
run: mix test
- name: Run credo
run: mix credo suggest