diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 287abf4..c518db9 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -19,6 +19,7 @@ jobs: - name: Install dev dependencies (lint) run: poetry install -v --no-interaction --no-root --only dev - name: Run linting - run: poetry run isort src \ - poetry run ruff check src --fix \ - poetry run ruff format src \ No newline at end of file + run: | + poetry run isort src + poetry run ruff check src --fix + poetry run ruff format src \ No newline at end of file