Skip to content

fix(ci): use PAT for release-please and simplify test matrix #8

fix(ci): use PAT for release-please and simplify test matrix

fix(ci): use PAT for release-please and simplify test matrix #8

Workflow file for this run

name: Run Pytest Tests
on:
push:
branches: [ "master" ]
paths:
- "tests/**"
- ".github/workflows/tests.yml"
- "**.py"
pull_request:
branches: [ "master" ]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
env:
API_KEY: ${{ secrets.API_KEY }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install -e .
- name: Run tests
run: |
pytest tests/