Skip to content

Testing fixing build #17

Testing fixing build

Testing fixing build #17

Workflow file for this run

name: Python CI Pipeline
on:
push:
branches: ["development"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install Dependencies
run: pip install -r requirements.txt
- name: Run tests
run: pytest -q