Skip to content

Added restart functionality #65

Added restart functionality

Added restart functionality #65

Workflow file for this run

name: Tests
on:
push:
branches: ['main', 'master']
pull_request:
branches: ['main', 'master']
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python - -y
echo "${HOME}/.local/bin" >> $GITHUB_PATH
- name: Install dependencies
run: poetry install --sync --no-interaction
- name: Run tests
run: poetry run pytest