Skip to content

Merge pull request #17 from cwru-sdle/rwb.edit #19

Merge pull request #17 from cwru-sdle/rwb.edit

Merge pull request #17 from cwru-sdle/rwb.edit #19

Workflow file for this run

name: test
on:
push:
branches: [ main ]
pull_request:
jobs:
test:
strategy:
fail-fast: false # don't cancel other matrix jobs when one fails
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -e .
pip install .[test]
- name: Run tests
run: |
pytest