Skip to content

feat(security & quality): address audit findings with API key auth, p… #10

feat(security & quality): address audit findings with API key auth, p…

feat(security & quality): address audit findings with API key auth, p… #10

Workflow file for this run

name: CI Test Suite
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
name: Run Pytest Test Suite
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest anyio
- name: Run Test Suite with Pytest
run: |
pytest -v --tb=short