fix docs + implement ungraceful varients of the byte-transport services #76
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: CI | |
env: | |
CARGO_TERM_COLOR: always | |
on: | |
push: | |
branches: | |
- main | |
pull_request: {} | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
override: true | |
profile: minimal | |
components: clippy, rustfmt | |
- uses: Swatinem/rust-cache@v2 | |
- name: Check | |
working-directory: . | |
run: | | |
cargo clippy --all --all-targets --all-features | |
- name: rustfmt | |
working-directory: . | |
run: | | |
cargo fmt --all -- --check | |
check-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
override: true | |
profile: minimal | |
- uses: Swatinem/rust-cache@v1 | |
- name: cargo doc | |
env: | |
RUSTDOCFLAGS: "-D broken-intra-doc-links" | |
run: cargo doc --all-features --no-deps | |
test: | |
needs: check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
override: true | |
profile: minimal | |
- uses: Swatinem/rust-cache@v1 | |
- name: Run doc tests | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --all-features | |
test-docs: | |
needs: check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
override: true | |
profile: minimal | |
- uses: Swatinem/rust-cache@v1 | |
- name: Run doc tests | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --all-features --doc | |
armv5te-unknown-linux-musleabi: | |
needs: check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
target: armv5te-unknown-linux-musleabi | |
override: true | |
profile: minimal | |
- uses: Swatinem/rust-cache@v1 | |
- name: Check | |
uses: actions-rs/cargo@v1 | |
env: | |
# Clang has native cross-compilation support | |
CC: clang | |
with: | |
command: check | |
args: > | |
--all-targets | |
--all-features | |
--all | |
--target armv5te-unknown-linux-musleabi | |
dependencies-are-sorted: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
override: true | |
profile: minimal | |
- uses: Swatinem/rust-cache@v2 | |
- name: Install cargo-sort | |
run: | | |
cargo install cargo-sort | |
- name: Check dependency tables | |
working-directory: . | |
run: | | |
cargo sort --workspace --grouped --check |