diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index a2377d6..2dad6b3 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -17,10 +17,12 @@ jobs: - run: nix flake check - name: Install the project - run: nix develop .#impure --command bash -c "uv sync --locked --all-extras --dev" + run: uv sync --locked --all-extras --dev + shell: nix develop .#impure --command bash - name: Check with Ruff - run: nix develop .#impure --command bash -c "uv run ruff check" + run: uv run + shell: nix develop .#impure --command bash - name: Test with PyTest run: nix develop .#impure --command bash -c "uv run pytest --junit-xml test-report.xml"