-
Notifications
You must be signed in to change notification settings - Fork 24
111 lines (94 loc) · 2.82 KB
/
main.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
name: 🚀 Deploy
on:
push:
branches:
- develop
- main
pull_request: {}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
actions: write
contents: read
jobs:
lint:
name: ⬣ PYLint
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v3
- name: 🐍 Setup Python
uses: actions/setup-python@v3
with:
python-version: '3.9'
- name: 📥 Install dependencies
run: |
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
- name: 🔬 Lint
run: |
source venv/bin/activate
pylint -E api/*.py
tests:
name: 🧪 Tests
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v3
- name: 🐍 Setup Python
uses: actions/setup-python@v3
with:
python-version: '3.9'
- name: 📥 Install dependencies
run: |
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
- name: 🏄 Copy test env vars
run: cp .env.example .env
#- name: 🧪 Run tests
# run: |
# source venv/bin/activate
# pytest api/certificates/tests/test_always_pass.py
#- name: 📊 Upload test results
# uses: actions/upload-artifact@v3
# if: always()
# with:
# name: test-results
# path: ./test-results/
# retention-days: 30
deploy:
name: 🚀 Deploy
runs-on: ubuntu-latest
needs: [lint, tests]
# only build/deploy main branch on pushes
if:
${{ (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop') &&
github.event_name == 'push' }}
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v3
- name: 👀 Read app name
uses: SebRollen/[email protected]
id: app_name
with:
file: 'fly.toml'
field: 'app'
- name: 🚀 Deploy Dev to https://staging.yourapp.com/
if: ${{ github.ref == 'refs/heads/develop' }}
uses: superfly/[email protected]
with:
args:
'deploy --remote-only --build-arg COMMIT_SHA=${{ github.sha }} --app ${{ steps.app_name.outputs.value }}-staging'
env:
FLY_API_TOKEN: ${{ secrets.FLY_STAGING_API_TOKEN }}
- name: 🚀 Deploy Main to https://yourapp.com/
if: ${{ github.ref == 'refs/heads/main' }}
uses: superfly/[email protected]
with:
args:
'deploy --remote-only --build-arg COMMIT_SHA=${{ github.sha }} --app ${{ steps.app_name.outputs.value }}-prod'
env:
FLY_API_TOKEN: ${{ secrets.FLY_RELEASE_API_TOKEN }}