Improve logging usefulness, fix handling of reference-values and provide a helpful diagnostic message when missing known-good RIM values. #47
Workflow file for this run
This file contains 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 | |
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 |