Skip to content

fix bug with clipping #5

fix bug with clipping

fix bug with clipping #5

Workflow file for this run

name: Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11.3
uses: actions/setup-python@v3
with:
python-version: "3.11.3"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[test]
- name: Lint
run: |
flake8 henon2midi/
black --check henon2midi/
black --check tests/
mypy --ignore-missing-imports henon2midi/
- name: Test
run: |
pytest