-
Notifications
You must be signed in to change notification settings - Fork 34
37 lines (30 loc) · 883 Bytes
/
qa.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
name: qa-build
on:
push:
branches: [ master ]
jobs:
# run tests / lint / etc. before building container image?
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout master
uses: actions/checkout@v4
with:
ref: 'master'
- name: Build
run: |
docker build -t cogstacksystems/medcat-trainer:latest webapp/.
- name: Run Django Tests
env:
IMAGE_TAG: latest
run: |
# run tests
docker run --rm cogstacksystems/medcat-trainer:latest python manage.py test
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Push to DockerHub
run: |
docker push cogstacksystems/medcat-trainer:latest