diff --git a/.github/workflows/all.yml b/.github/workflows/all.yml index 8554a2e5..99e44154 100644 --- a/.github/workflows/all.yml +++ b/.github/workflows/all.yml @@ -32,9 +32,9 @@ jobs: python -m pip install --upgrade pip pip install ruff - name: Lint Python code - run: ruff check ${{ runner.workspace }}/pedalboard --ignore=E203,F541 --exclude .git,dist,doc,build,vendors,'*.pyi' --line-length 100 + run: ruff check ${{ runner.workspace }}/pedalboard --ignore=E203,F541 --exclude .git,dist,doc,build,vendors,'*.pyi' --line-length 100 --target-version py38 - name: Check Python formatting - run: ruff format --check ${{ runner.workspace }}/pedalboard --exclude .git,dist,doc,build,JUCE,examples,vendors,'*.pyi' --diff --line-length 100 + run: ruff format --check ${{ runner.workspace }}/pedalboard --exclude .git,dist,doc,build,JUCE,examples,vendors,'*.pyi' --diff --line-length 100 --target-version py38 lint-cpp: runs-on: 'ubuntu-20.04'