-
-
Notifications
You must be signed in to change notification settings - Fork 3
47 lines (37 loc) · 869 Bytes
/
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
name: MishkaInstaller CI
on:
push:
branches:
- refactor-dependencies
pull_request:
branches:
- refactor-dependencies
jobs:
ci:
env:
GITHUB_ACTION: true
strategy:
fail-fast: false
matrix:
include:
- pair:
elixir: "1.17.0"
otp: "27.0"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.pair.otp}}
elixir-version: ${{matrix.pair.elixir}}
- name: Elixir and Erlang Dependencies
run: |
mix local.hex --force
mix local.rebar --force
- name: Source Compiling
run: |
mix deps.get
mix deps.compile
- name: Run test with temporary information
run: |
mix test --trace