Skip to content

docs: write comprehensive READMEs for sovereign_debt_xl and sovereign… #15

docs: write comprehensive READMEs for sovereign_debt_xl and sovereign…

docs: write comprehensive READMEs for sovereign_debt_xl and sovereign… #15

Workflow file for this run

name: pytest
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install -U pip
pip install -r requirements.txt
pip install -e .
- name: Run tests
run: |
pytest -q