Skip to content

core: add end-to-end testing with distribution #17

core: add end-to-end testing with distribution

core: add end-to-end testing with distribution #17

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install Poetry
run: |
pipx install poetry
- name: Install dependencies
run: |
poetry install
- name: Run tests
run: |
poetry run pytest -s -x