Skip to content

fix: hotfixes for Stan v2.33 #14

fix: hotfixes for Stan v2.33

fix: hotfixes for Stan v2.33 #14

Workflow file for this run

name: test
on:
push:
branches:
- main
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ["3", "3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip" # caching pip dependencies
- name: Install dependencies
run: |
pip install -r tests/requirements.txt
- name: Run coverage test
run: |
python tests/test_function_coverage.py