Skip to content

Initial set of tests #2

Initial set of tests

Initial set of tests #2

Workflow file for this run

name: Python tests
on:
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./server
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: abatilo/actions-poetry@v4
- name: Install dependencies and run pytest
run: |
poetry install
pytest