Skip to content

Merge pull request #132 from CogStack/example-loading-fixes #267

Merge pull request #132 from CogStack/example-loading-fixes

Merge pull request #132 from CogStack/example-loading-fixes #267

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@v3
- 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