Skip to content

Commit

Permalink
Fix working-directory to what each action wants
Browse files Browse the repository at this point in the history
  • Loading branch information
lukamac committed Dec 26, 2024
1 parent 03b5f8e commit b7b6729
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
name: Test Neureka
name: Linting
on: push
jobs:
python-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: psf/black@stable
working-directory: test
with:
src: "test"
- uses: jakebailey/pyright-action@v2
working-directory: test
with:
working-directory: test
- uses: isort/isort-action@v1
working-directory: test
with:
requirements-files: "requirements-pip.txt"
sort-paths: "test"
requirements-files: "requirements-pip.txt"

0 comments on commit b7b6729

Please sign in to comment.