Bump pin-project-lite from 0.2.15 to 0.2.16 #133
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: ci | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
schedule: | |
- cron: "12 3 * * *" | |
jobs: | |
fmt: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: rustup component add rustfmt | |
- run: cargo fmt --check | |
clippy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: arduino/setup-protoc@v3 | |
- run: rustup component add clippy | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo clippy --all-targets -- -D warnings -D clippy::all | |
working-directory: error | |
- run: cargo clippy --all-targets -- -D warnings -D clippy::all | |
working-directory: client | |
- run: cargo clippy --all-targets -- -D warnings -D clippy::all | |
working-directory: server | |
- run: cargo clippy --all-targets -- -D warnings -D clippy::all | |
working-directory: build | |
- run: cargo clippy --all-targets -- -D warnings -D clippy::all | |
- run: cargo clippy --all-targets --all-features -- -D warnings -D clippy::all | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: arduino/setup-protoc@v3 | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo test | |
working-directory: error | |
- run: cargo test | |
working-directory: client | |
- run: cargo test | |
working-directory: server | |
- run: cargo test | |
working-directory: build | |
- run: cargo test | |
- run: cargo test --all-features | |
test_msv: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: arduino/setup-protoc@v3 | |
- run: rustup override set 1.79.0 && rustup toolchain install nightly | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo +nightly update -Z direct-minimal-versions | |
- run: cargo test | |
- run: cargo test --all-features | |
rustdoc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: arduino/setup-protoc@v3 | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo doc --all-features --no-deps | |
env: | |
RUSTDOCFLAGS: -D warnings | |
deny: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: taiki-e/install-action@v2 | |
with: { tool: cargo-deny } | |
- run: cargo deny check | |
semver_checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: Swatinem/rust-cache@v2 | |
- uses: taiki-e/install-action@v2 | |
with: { tool: cargo-semver-checks } | |
- run: cargo semver-checks check-release | |
typos: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: taiki-e/install-action@v2 | |
with: { tool: typos-cli } | |
- run: typos |