Skip to content

Merge branch 'artmed' #29

Merge branch 'artmed'

Merge branch 'artmed' #29

Workflow file for this run

name: Test code and app
on:
push:
branches:
- main
pull_request:
types: [ opened, synchronize, reopened ]
jobs:
run_tests:
name: Testing project
runs-on: ubuntu-latest
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v2
- name: Environment setup
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install packages
run: poetry install
- name: Run tests
run: poetry run pytest tests/