Skip to content

Commit 6dd5182

Browse files
committed
fix: add ./ prefix to lint task path for CI compatibility
The lint task was failing in GitHub Actions because the Python script path was not being resolved correctly. Adding ./ prefix matches the pattern used by other Python tasks (sort, merge, next) and ensures the path is resolved relative to the project root in the pixi environment.
1 parent 4f0cdc5 commit 6dd5182

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pixi.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ test = "pytest tests/ -v"
2525
test-cov = "pytest tests/ -v --cov=utils --cov-report=term-missing"
2626
test-fast = "pytest tests/ -v -x"
2727
pre = "pre-commit run --all-files"
28-
lint = "python utils/conferences/linters/validate.py"
28+
lint = "python ./utils/conferences/linters/validate.py"
2929

3030
[dependencies]
3131
python = ">=3.10,<3.12"

0 commit comments

Comments
 (0)