Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/ci-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ on:
# allow running manually
workflow_dispatch:

env:
CARGO_TERM_COLOR: always

jobs:
rust_ci:
# the default timeout is 6 hours, that's too much if the job gets stuck
Expand Down Expand Up @@ -110,6 +113,10 @@ jobs:

- name: Run the tests
run: cargo tarpaulin --all --doc --out xml -- --nocapture
env:
# use the "stable" tool chain (installed above) instead of the "nightly" default in tarpaulin
RUSTC_BOOTSTRAP: 1
RUSTUP_TOOLCHAIN: stable

- name: Generate and validate the OpenAPI specification
run: |
Expand Down