Skip to content

Split command

Split command #102

Workflow file for this run

name: Run pytest on pull request
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: checkout repo
uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip install poetry
poetry install --with=dev
- name: Run tests with pytest
run: poetry run pytest