Skip to content

Feat/reserve branche #129

Feat/reserve branche

Feat/reserve branche #129

Workflow file for this run

name: Python tests
on:
push:
branches: ["master"]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: pytest -v