Skip to content

Anchor consumption grid lower bound to consumption_floor parameter #64

Anchor consumption grid lower bound to consumption_floor parameter

Anchor consumption grid lower bound to consumption_floor parameter #64

Workflow file for this run

---
name: main
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
on:
push:
branches:
- main
pull_request:
branches:
- '**'
jobs:
run-tests:
name: Run tests on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
python-version:
- '3.14'
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install pylcm (unreleased feature branch required)
run: >-
pip install "pylcm @
git+https://github.com/OpenSourceEconomics/pylcm.git@ca66ba9"
- name: Install aca-model with test deps
run: pip install -e . pytest pdbp
- name: Run pytest
run: pytest tests