Skip to content

CU-8693xmupv: refactor models, into models and actions project group … #479

CU-8693xmupv: refactor models, into models and actions project group …

CU-8693xmupv: refactor models, into models and actions project group … #479

Workflow file for this run

name: ci-build
on: [push]
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: ${{ github.ref }}
- name: Build
env:
IMAGE_TAG: ${{ env.RELEASE_VERSION }}
run: |
docker build -t cogstacksystems/medcat-trainer:dev-latest webapp/.
- name: Run Django Tests
env:
IMAGE_TAG: ${{ env.RELEASE_VERSION }}
run: |
# run tests
docker run --rm cogstacksystems/medcat-trainer:dev-latest python manage.py test