-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (47 loc) · 1.16 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
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
otp: "25.0"
elixir: "1.16.2"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Erlang & Elixir
uses: erlef/setup-beam@v1
with:
otp-version: ${{ env.otp }}
elixir-version: ${{ env.elixir }}
- uses: hoverkraft-tech/[email protected]
with:
compose-file: "./docker-compose.yml"
down-flags: "--remove-orphans"
up-flags: "--no-start"
- name: Install dependencies
run: mix deps.get
- name: Check formatting
run: mix format --check-formatted
- name: Check unused deps
run: mix deps.unlock --check-unused
- name: Check warnings
run: mix compile --warnings-as-errors
- name: Run tests
run: mix test
- name: Run integration tests
run: |
docker compose up -d
mix test.integration
docker compose down --remove-orphans
- name: Run Tabular tests
env:
TABULAR_CREDENTIAL: ${{ secrets.TABULAR_CREDENTIAL }}
run: |
mix test.tabular