Improvements in CI files #4206
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: mediasoup-rust | ||
on: [push, pull_request] | ||
concurrency: | ||
# Cancel a currently running workflow from the same PR, branch or tag when a | ||
# new workflow is triggered. | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
env: | ||
CARGO_TERM_COLOR: always | ||
jobs: | ||
ci: | ||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-20.04 | ||
- ubuntu-22.04 | ||
- macos-12 | ||
- windows-2022 | ||
runs-on: ${{ matrix.os }} | ||
env: | ||
KEEP_BUILD_ARTIFACTS: "1" | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Configure cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/.cargo/registry | ||
~/.cargo/git | ||
key: ${{ matrix.os }}-cargo-${{ hashFiles("**/Cargo.toml") }} | ||
Check failure on line 39 in .github/workflows/mediasoup-rust.yaml GitHub Actions / mediasoup-rustInvalid workflow file
|
||
- name: cargo fmt | ||
run: cargo fmt --all -- --check | ||
- name: cargo clippy | ||
run: cargo clippy --all-targets -- -D warnings | ||
- name: cargo test | ||
run: cargo test --verbose | ||
- name: cargo doc | ||
run: cargo doc --locked --all --no-deps --lib | ||
env: | ||
DOCS_RS: "1" | ||
RUSTDOCFLAGS: "-D rustdoc::broken-intra-doc-links -D rustdoc::private_intra_doc_links" | ||