Skip to content

fix: docker builds #301

fix: docker builds

fix: docker builds #301

Workflow file for this run

# This workflow will install Python dependencies and run tests
name: "Pytest"
on:
pull_request:
push:
branches: master
jobs:
run_tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install poetry
python -m poetry install
- name: Run tests with code coverage
run: |
poetry run pytest