Skip to content

Merge pull request #71 from arterys/dependabot/pip/flask-2.3.2 #179

Merge pull request #71 from arterys/dependabot/pip/flask-2.3.2

Merge pull request #71 from arterys/dependabot/pip/flask-2.3.2 #179

Workflow file for this run

# This workflow will install Python dependencies and run tests with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Build
on:
pull_request:
branches: [ master ]
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r tests/requirements.txt
- name: Pre build mock server docker image
run: |
docker build -t arterys_inference_server .
- name: Test the mock inference server
run: |
python -m unittest