Skip to content
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

check python format in CI #9

Merged
merged 1 commit into from
Feb 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
# files: ./bazel-out/_coverage/_coverage_report.dat
# fail_ci_if_error: true

buildifier:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -86,4 +86,4 @@ jobs:
bazel \
--bazelrc=.github/workflows/ci.bazelrc \
run \
//:buildifier.check
//:format.check
26 changes: 9 additions & 17 deletions BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
load("@buildifier_prebuilt//:rules.bzl", "buildifier")
load("@rules_uv//uv:pip.bzl", "pip_compile")
load("@rules_uv//uv:venv.bzl", "create_venv")

Expand All @@ -21,22 +20,15 @@ create_venv(
requirements_txt = ":requirements_linux_x86_64.txt",
)

buildifier(
name = "buildifier.check",
exclude_patterns = [
"./.git/*",
"./.venv/*",
],
lint_mode = "warn",
mode = "diff",
# NB: this alias does NOT cause Bazel's Loading phase to load the tools/BUILD file.
# That's important as we don't want users to wait for "Eager fetching" for ~EVERY language which
# that build file loads from.
alias(
name = "format",
actual = "//tools:format",
)

buildifier(
name = "buildifier.fix",
exclude_patterns = [
"./.git/*",
"./.venv/*",
],
lint_mode = "warn",
mode = "fix",
alias(
name = "format.check",
actual = "//tools:format.check",
)
1 change: 1 addition & 0 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,4 @@ bazel_dep(
version = "8.0.1",
dev_dependency = True,
)
bazel_dep(name = "aspect_rules_lint", version = "1.0.9", dev_dependency = True)
Loading