Skip to content

feat: adding github actions and pytest #1

feat: adding github actions and pytest

feat: adding github actions and pytest #1

Workflow file for this run

name: CI - Python Pytest
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r src/requirements.txt
- name: Run Pytest
run: pytest --maxfail=1 --disable-warnings -v