32 lines
776 B
YAML
32 lines
776 B
YAML
name: rust-workspace
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
jobs:
|
|
rust-workspace:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install Rust 1.85
|
|
uses: dtolnay/rust-toolchain@1.85.0
|
|
with:
|
|
components: rustfmt, clippy
|
|
|
|
- name: Format
|
|
run: cargo fmt --manifest-path adk-rust/Cargo.toml --all -- --check
|
|
|
|
- name: Test
|
|
run: cargo test --manifest-path adk-rust/Cargo.toml --workspace
|
|
|
|
- name: Clippy
|
|
run: cargo clippy --manifest-path adk-rust/Cargo.toml --workspace --all-targets -- -D warnings
|
|
|
|
- name: Release build
|
|
run: cargo build --manifest-path adk-rust/Cargo.toml --workspace --release
|