Skip to content

first working version #1

first working version

first working version #1

Workflow file for this run

name: Test
jobs:
test:
runs-on: ubuntu-latest
container:
image: python:3.10
steps:
- uses: actions/checkout@v4
- name: Install dependencies.
run : |
python3 -m pip install -r requirements/requirements.python.test.txt
- name: Run tests.
run : |
python3 -m pytest tests