Skip to content

feat: add CI actions for OpenAPI and Rust #1

feat: add CI actions for OpenAPI and Rust

feat: add CI actions for OpenAPI and Rust #1

Workflow file for this run

name: Rust
on:
push:
paths:
- 'rust-keybroker/**'
pull_request

Check failure on line 7 in .github/workflows/rust.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/rust.yml

Invalid workflow file

You have an error in your yaml syntax on line 7
paths:
- 'rust-keybroker/**'
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- 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