-
Notifications
You must be signed in to change notification settings - Fork 18
47 lines (35 loc) · 1.02 KB
/
cicd.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
name: CI/CD
on:
push:
branches: [main]
pull_request:
branches: [main, dev]
workflow_dispatch:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install pip
run: python -m pip install --upgrade pip
- name: Install Dependencies
run: pip install -r requirements.txt
- name: Lint with flake8
uses: py-actions/flake8@v2
with:
args: --extend-ignore E501,E741
- name: Run Tests
run: python -m pytest
deploy:
name: Deploy to dev
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' && always() && contains(join(needs.*.result, ','), 'success') }}
needs: [test]
steps:
- uses: actions/checkout@v2
- uses: akhileshns/[email protected]
with:
heroku_api_key: ${{ secrets.HEROKU_API_KEY }}
heroku_app_name: ${{ secrets.HEROKU_DEV_APP_NAME }}
heroku_email: ${{ secrets.HEROKU_EMAIL }}