-
-
Notifications
You must be signed in to change notification settings - Fork 4
67 lines (57 loc) · 1.56 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
56
57
58
59
60
61
62
63
64
65
66
67
name: MishkaDeveloperTools CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
ci:
env:
GITHUB_ACTION: true
strategy:
fail-fast: false
matrix:
include:
- pair:
elixir: "1.15.7"
otp: "26.2.1"
postgres: "14.1-alpine"
runs-on: ubuntu-latest
services:
postgres:
image: postgres:${{matrix.pair.postgres}}
env:
POSTGRES_DB: mishka_test
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432/tcp
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
env:
DATABASE_DEVELOPERT_URL: postgresql://postgres:postgres@localhost:${{job.services.postgres.ports[5432]}}/mishka_developer_tools_test
run: |
mix deps.get
mix deps.compile
- name: Run test with temporary information
env:
DATABASE_DEVELOPERT_URL: postgresql://postgres:postgres@localhost:${{job.services.postgres.ports[5432]}}/mishka_developer_tools_test
run: |
mix dialyzer
mix test --trace