We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e0123d commit 0695c0dCopy full SHA for 0695c0d
.github/workflows/lint.yml
@@ -28,3 +28,16 @@ jobs:
28
- run: reindeer buckify
29
- name: Check reindeer-generated BUCK file up to date
30
run: git diff --exit-code
31
+
32
+ starlark:
33
+ name: Starlark lint
34
+ needs: pre_ci
35
+ if: needs.pre_ci.outputs.continue
36
+ runs-on: ubuntu-latest
37
+ timeout-minutes: 45
38
+ steps:
39
+ - uses: actions/checkout@v4
40
+ - uses: dtolnay/install-buck2@latest
41
+ - name: git submodule init
42
+ uses: ./.github/actions/checkout
43
+ - run: git ls-files '*.bzl' '*.bxl' | xargs buck2 starlark lint
0 commit comments