Skip to content

Merge branch 'main' of github.com:cmudrc/pied-piper #33

Merge branch 'main' of github.com:cmudrc/pied-piper

Merge branch 'main' of github.com:cmudrc/pied-piper #33

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
paths:
- piperabm/**
- tests/**
- pyproject.toml
- .github/workflows/run-tests.yml
pull_request:
branches:
- main
paths:
- piperabm/**
- tests/**
- pyproject.toml
- .github/workflows/run-tests.yml
jobs:
test:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- name: Check out the repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python --version
- name: Install piperabm
run: |
pip install --upgrade pip
pip install -e .
- name: Run tests
run: python tests/tests.py