examples: make info message more generic #505
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 | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: cargo build --all-targets --all-features --verbose | |
- name: Run tests | |
run: cargo test --verbose --all-features | |
lints: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Clippy | |
run: cargo clippy --all-targets -- -D warnings | |
- name: Fmt | |
run: cargo fmt --all -- --check | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
- uses: pre-commit/[email protected] | |
doc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup | |
run: rustup toolchain install nightly | |
- name: Doc (stable) | |
run: cargo doc --all-features | |
- name: Doc (nightly) | |
run: RUSTDOCFLAGS="--cfg docsrs" cargo +nightly doc --all-features | |
check-external-types: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
toolchain: nightly-2024-05-01 | |
- name: Setup | |
run: cargo install cargo-check-external-types --locked | |
- name: Check Ext Types (wtransport) | |
working-directory: wtransport/ | |
run: cargo check-external-types --all-features | |
- name: Check Ext Types (wtransport-proto) | |
working-directory: wtransport-proto/ | |
run: cargo check-external-types --all-features | |
unused-deps: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
toolchain: nightly | |
- name: Check Unused Deps | |
uses: aig787/cargo-udeps-action@v1 | |
with: | |
args: "--all-targets" |