docs: clarify install and add CI

This commit is contained in:
thePR0M3TH3AN
2025-06-28 20:25:35 -04:00
parent 60cad8b26d
commit 15f2dc7a98
2 changed files with 29 additions and 7 deletions

22
.github/workflows/python-ci.yml vendored Normal file
View File

@@ -0,0 +1,22 @@
name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r src/requirements.txt
- name: Test with pytest
run: pytest