Skip to content

Parse harmony (chord symbols) from MusicXML files #62

Parse harmony (chord symbols) from MusicXML files

Parse harmony (chord symbols) from MusicXML files #62

Workflow file for this run

name: Testing (macOS & Windows)
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [macos-latest, windows-latest]
python-version: ["3.7", "3.8", "3.9", "3.10"]
runs-on: ${{ matrix.os }}
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: |
python -m pip install --upgrade pip
python -m pip install pytest
pip install -e .[test,optional,schema]
- name: Test with pytest
run: pytest --cov="muspy/" --ignore="tests/test_audio.py" tests/