fix: Pass the client's content type through to Veraison rather than hard-coding #6
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 |