generated from nyu-software-engineering/final-project
-
Notifications
You must be signed in to change notification settings - Fork 2
53 lines (43 loc) · 1.38 KB
/
ci-cd.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
jobs:
build-and-test:
runs-on: ubuntu-latest
services:
mongodb:
image: mongo
ports:
- 27017:27017
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install pytest # or any other needed testing libraries
- name: Run unit tests
run: pytest
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Log in to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }}
- name: Build and push machine learning client Docker image
uses: docker/build-push-action@v2
with:
context: ./machine-learning-client
file: ./machine-learning-client/Dockerfile
push: true
tags: kondalex/machine-learning-client:latest
- name: Build and push web app Docker image
uses: docker/build-push-action@v2
with:
context: ./web-app
file: ./web-app/Dockerfile
push: true
tags: kondalex/web-app:latest
- name: Notify Deployment
run: echo "Images built and pushed successfully!"