forked from stueccles/analytics-elixir
-
Notifications
You must be signed in to change notification settings - Fork 2
45 lines (37 loc) · 915 Bytes
/
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
name: analytics-elixir
on:
push:
branches:
- "*"
tags-ignore:
- "*"
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Elixir
uses: actions/setup-elixir@v1
with:
elixir-version: "1.12.1"
otp-version: "23.0.4"
experimental-otp: true
- name: Restore dependencies cache
uses: actions/cache@v2
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-
- name: Install dependencies
run: mix deps.get
- name: Check formatted
run: mix format --check-formatted
- name: Run tests
env:
MIX_ENV: test
run: mix test
- name: Run Dialyzer
env:
MIX_ENV: dev
run: mix dialyzer