ChartBoost / ruff-action

A GitHub Action for Ruff
Apache License 2.0
121 stars 21 forks source link

seems like this doesn't read my pyproject.toml #22

Closed amirreza8002 closed 5 months ago

amirreza8002 commented 5 months ago

hi so i have a pyproject.toml that configures ruff to ignore certain things this works fine in local but github action is failing

"__init__.py" = ["E402", "F401", "F403"] this is one example of my config

pyproject.toml is on the root dir of the project and is pushed to github

brucearctor commented 5 months ago

@amirreza8002 -- it would be expected that this works the same, assuming same version of ruff [ which you can pin ].

Can you create a shareable, reproducible, viewable example?

Ex:

amirreza8002 commented 5 months ago

hi again sorry, seems like i had some sort of caching problem or similar not sure why ruff did work without error, but seems like it had an error to begin with so your all good thanks for the great tool btw