Skip to content

polish(keybroker-server): use RIM only when these are the CCA referen… #50

polish(keybroker-server): use RIM only when these are the CCA referen…

polish(keybroker-server): use RIM only when these are the CCA referen… #50

Workflow file for this run

name: Rust
on:
push:
paths:
- 'rust-keybroker/**'
pull_request:
paths:
- 'rust-keybroker/**'
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Formatting checks
run: cargo fmt --manifest-path=rust-keybroker/Cargo.toml --all -- --check
- name: Clippy checks
run: cargo clippy --manifest-path=rust-keybroker/Cargo.toml --all-targets -- -D clippy::all -D clippy::cargo -A clippy::multiple-crate-versions
- name: Build
run: cargo build --manifest-path=rust-keybroker/Cargo.toml --verbose
- name: Run tests
run: cargo test --manifest-path=rust-keybroker/Cargo.toml --verbose
- name: Install keybroker-app
run: cargo install --path=rust-keybroker/keybroker-app --root $RUNNER_TEMP/keybroker-demo
- name: Install keybroker-server
run: cargo install --path=rust-keybroker/keybroker-server --root $RUNNER_TEMP/keybroker-demo