added rust api to control DESI data distribution; updated to utilize bun for renovate
CI / Unit tests (pull_request) Failing after 8m55s

This commit is contained in:
2026-08-31 13:17:05 -06:00
parent 32ab1213fb
commit 5148d7e54f
19 changed files with 978 additions and 16 deletions
+18
View File
@@ -28,6 +28,9 @@ jobs:
with:
go-version: '1.26'
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Install Odin ${{ env.ODIN_VERSION }}
run: scripts/install_odin.sh
@@ -61,3 +64,18 @@ jobs:
run: |
cd infra
go vet ./...
- name: Test Rust API
run: |
cd api
cargo test
- name: Lint Rust API
run: |
cd api
cargo clippy --all-targets -- -D warnings
- name: Format-check Rust API
run: |
cd api
cargo fmt --all --check