-
-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Provide a GitHub Action #76
Comments
I think that would be cool too, but I don't really know anything about
Github actions. There is already the -c flag to check if files are
formatted, for use in CI. If you just want a list of files that need
formatting, it should be pretty trivial and I'd appreciate a PR. If github
supports annotations per line, I think that would be easiest to achieve
with a separate diff tool since nixfmt does not remember source locations
after parsing.
|
I suggest adding a GitHub Action to check Nix formatting using nixfmt and annotate issues in pull requests. Create a workflow: <-add a file named->.github/workflows/nixfmt.yml `name: Check Nix Formatting on: [pull_request, push] jobs:
This workflow installs nixfmt, checks formatting, and uses GitHub's problem matcher to annotate any reformatting needed directly in the pull request. |
steps workflow
The action ensures code the highlights formatting issues directly in pull requests. |
I don't think this is implementable anymore with the removal of recursive mode. A GH action in treefmt would probably be more appropriate. |
Briefly discussed in the meeting today, agreed with @dasJ |
This issue has been mentioned on NixOS Discourse. There might be relevant details there: https://discourse.nixos.org/t/formatting-team-meeting-2024-10-01/53763/1 |
It'd be really great if I could hook up a GitHub Action with nixfmt so it provided annotations to the code about reformatting that needs doing.
The text was updated successfully, but these errors were encountered: