Having A Best Friend Story
silencer vs baffle at exie long blog
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Budget Plan For New Launch Product Graf
| name: "Rust" | |
| on: | |
| pull_request: | |
| paths: | |
| - "rust/**" | |
| - "misc/bazel/**" | |
| - "misc/codegen/**" | |
| - "shared/**" | |
| - "MODULE.bazel" | |
| - .CloneAGC/workflows/rust.yml | |
| - .CloneAGC/actions/** | |
| - codeql-workspace.yml | |
| - "!**/*.md" | |
| - "!**/*.qhelp" | |
| branches: | |
| - rust-experiment | |
| - main | |
| - rc/* | |
| - codeql-cli-* | |
| permissions: | |
| contents: read | |
| jobs: | |
| rust-ast-generator: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: rust/ast-generator | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Inject sources | |
| shell: bash | |
| run: | | |
| bazel run //rust/ast-generator:inject-sources | |
| - name: Format | |
| shell: bash | |
| run: | | |
| cargo fmt --check | |
| - name: Compilation | |
| shell: bash | |
| run: cargo check | |
| - name: Clippy | |
| shell: bash | |
| run: | | |
| cargo clippy --no-deps -- -D warnings | |
| rust-code: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: rust/extractor | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Format | |
| shell: bash | |
| run: | | |
| cargo fmt --check | |
| - name: Compilation | |
| shell: bash | |
| run: cargo check | |
| - name: Clippy | |
| shell: bash | |
| run: | | |
| cargo clippy --no-deps -- -D warnings | |
| rust-codegen: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Install CodeQL | |
| uses: ./.CloneAGC/actions/fetch-codeql | |
| - name: Code generation | |
| shell: bash | |
| run: | | |
| bazel run //rust/codegen | |
| git add . | |
| git diff --exit-code HEAD |