-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (54 loc) · 1.45 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
name: CI
on: [push, pull_request]
jobs:
static-analysis:
name: Static Analysis
runs-on: ubuntu-latest
# services:
# postgres:
# image: postgres:13-alpine
# env:
# POSTGRES_USER: postgres
# POSTGRES_PASSWORD: postgres
# POSTGRES_DB: gatherly_dev
# ports:
# - 5432:5432
# options: >-
# --health-cmd pg_isready
# --health-interval 10s
# --health-timeout 5s
# --health-retries 5
steps:
- uses: actions/checkout@v4
- name: Install devbox
uses: jetify-com/[email protected]
with:
enable_cache: "true"
- name: Check Format
run: devbox run check_format
- name: start DB
run: devbox run postgres
- name: Run tests
run: devbox run test
env:
MIX_ENV: test
- name: Test Coverage
run: devbox run coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
deploy:
name: Deploy app
needs: static-analysis
runs-on: ubuntu-latest
environment: prod
steps:
- uses: actions/checkout@v4
- name: Install devbox
uses: jetify-com/[email protected]
with:
enable_cache: "true"
- run: devbox run deploy
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}