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 ee2a8b0 commit c979a94Copy full SHA for c979a94
.github/workflows/rust.yml
@@ -28,6 +28,11 @@ jobs:
28
steps:
29
- name: Checkout
30
uses: actions/checkout@v4
31
+ - name: Format
32
+ working-directory: rust/extractor
33
+ shell: bash
34
+ run: |
35
+ cargo fmt --check
36
- name: Compilation
37
working-directory: rust/extractor
38
shell: bash
@@ -38,15 +43,9 @@ jobs:
43
run: |
39
44
cargo clippy --fix
40
45
git diff --exit-code
41
- - name: Format
42
- working-directory: rust/extractor
- shell: bash
- run: |
- cargo fmt --check
46
- name: Code generation
47
48
49
50
- bazel run codegen
+ bazel run //rust/codegen
51
git add .
52
git diff --exit-code HEAD
0 commit comments