Bump quinn-proto from 0.11.6 to 0.11.8 #534
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': | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
key: ${{ runner.os }}-lint-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Install Toolchain | |
uses: dtolnay/rust-toolchain@nightly | |
with: | |
components: clippy, rustfmt | |
- name: Check Fmt | |
run: cargo fmt --all -- --check --color always | |
- name: Check Clippy | |
run: cargo clippy --tests --all -- -D warnings | |
deny: | |
name: Deny | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Deny | |
uses: EmbarkStudios/cargo-deny-action@v1 | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
key: ${{ runner.os }}-build-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Install Toolchain | |
uses: dtolnay/rust-toolchain@nightly | |
- name: Build | |
run: cargo build --all --verbose | |
- name: Tests | |
run: cargo test --all --verbose |