Skip to content

poetry update and version increase #58

poetry update and version increase

poetry update and version increase #58

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry==1.*
poetry install
- name: Test with pytest
run: |
poetry run coverage run -m pytest
poetry run coverage report -i