-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (43 loc) · 1.17 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
name: Deploy Image to Docker Hub
env:
APP_NAME: 'prjctr'
on:
push:
branches:
- master
- feature/*
workflow_dispatch:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: 'Checkout GitHub Action'
uses: actions/checkout@main
- name: 'Set up Python'
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: 'Install dependencies'
run: |
python -m pip install --upgrade pip
pip install -r app/requirements-dev.txt
- name: 'Run pytest'
run: |
cd app/
pytest tests/
push-image:
needs: tests
runs-on: ubuntu-latest
steps:
- name: 'Checkout GitHub Action'
uses: actions/checkout@main
- name: 'Login to Docker Hub'
uses: docker/login-action@v1
with:
registry: docker.io
username: ${{ secrets.DH_USERNAME }}
password: ${{ secrets.DH_PASSWORD }}
- name: 'Build & Push Image'
run: |
docker build . --tag docker.io/${{ secrets.DH_USERNAME }}/$APP_NAME:latest
docker push docker.io/${{ secrets.DH_USERNAME }}/$APP_NAME:latest