Skip to content

docs: adding license and basic readme information #4

docs: adding license and basic readme information

docs: adding license and basic readme information #4

Workflow file for this run

name: Automated Testing
on: [push, pull_request]
env:
PYTHONPATH: ./src
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Repository Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Run tests
run: pytest