Merge pull request #195 from CogStack/django-update #188
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |