Skip to content

Update black

Update black #104

Workflow file for this run

name: pyCamillaDSP
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.11']
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ".[dev]"
- name: Test with pytest
run: |
pip install pytest
pip install pytest-cov
pytest --cov=camilladsp --cov-report=html
- name: pylint
run: |
pylint camilladsp
- name: Lint types
run: |
mypy --install-types --non-interactive camilladsp
- name: Lint formatting
run: |
black . --check --verbose