Skip to content

Fix working-directory to what each action wants #3

Fix working-directory to what each action wants

Fix working-directory to what each action wants #3

Workflow file for this run

name: Linting
on: push
jobs:
python-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: psf/black@stable
with:
src: "test"
- uses: jakebailey/pyright-action@v2
with:
working-directory: test
- uses: isort/isort-action@v1
with:
sort-paths: "test"
requirements-files: "requirements-pip.txt"