Skip to content

Started prop_allocation() #18

Started prop_allocation()

Started prop_allocation() #18

Workflow file for this run

on:
push:
branches:
- main
pull_request:
branches:
- main
name: CI Tests
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run:
pip install numpy pytest
- name: pytest unit tests
run: python -m pytest