diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index dd76a9b..89b19fb 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -29,6 +29,7 @@ jobs: with: sparse-checkout: | .github + ci src pyproject.toml requirements.txt diff --git a/pyproject.toml b/pyproject.toml index 51c897c..4491e99 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -45,8 +45,8 @@ markers = [ [tool.ruff] -# Lint only dir `src` -src = ["src"] +# Lint only mentioned dirs +src = ["src", "ci"] # Ignore line length limitation -ignore = ["E501"] \ No newline at end of file +lint.ignore = ["E501"] \ No newline at end of file