This repository was archived by the owner on Sep 11, 2025. It is now read-only.
Bump versions of backend since there is an upstream error happening #12
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.
Learn more about bidirectional Unicode characters
name: Rust CI | |
on: | |
push: | |
paths: | |
- "backend/rust_parser/**" | |
- "backend/vector_store/**" | |
- ".github/workflows/rust-ci.yml" | |
pull_request: | |
branches: | |
- main | |
env: | |
CARGO_TERM_COLOR: always | |
RUSTFLAGS: "-Dwarnings" | |
jobs: | |
prettier: | |
name: Rust quality check | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
service: [rust_parser, vector_store] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run clippy on ${{ matrix.service }} | |
working-directory: backend/${{ matrix.service }} | |
run: cargo clippy --all-targets --all-features |