-
Notifications
You must be signed in to change notification settings - Fork 3
53 lines (46 loc) · 1.03 KB
/
ci.yaml
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
name: CI
on:
pull_request:
branches:
- main
paths:
- "lib/**"
- "mix.exs"
- "mix.lock"
- "test/**"
- ".github/workflows/ci.yaml"
push:
branches:
- main
paths:
- "lib/**"
- "mix.exs"
- "mix.lock"
- ".github/workflows/ci.yaml"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
version: ["3_13", "3_12", "3_11"]
steps:
- uses: erlef/setup-beam@v1
with:
otp-version: "26"
elixir-version: "1.15"
- uses: actions/checkout@v3
- uses: isbang/compose-action@v1.5.1
with:
compose-file: "./services/docker-compose.yaml"
services: "rabbitmq_stream_${{ matrix.version }}"
- name: Install Dependencies
run: |
mix local.rebar --force
mix local.hex --force
mix deps.unlock --all
mix deps.get
mix deps.compile
- name: Compile app
run: mix compile
- name: Run tests
run: mix test