Skip to content

Fix CI failures: TOML syntax error, asm_spread typo, missing plotting module #48

Fix CI failures: TOML syntax error, asm_spread typo, missing plotting module

Fix CI failures: TOML syntax error, asm_spread typo, missing plotting module #48

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 .
pip install -e sovereign_debt_py/
- name: Run tests
run: |
pytest -q