Skip to content

Update Rust crate h2 to v0.4.13 #92

Update Rust crate h2 to v0.4.13

Update Rust crate h2 to v0.4.13 #92

Workflow file for this run

name: Review
on:
pull_request:
paths:
- 'src/**'
- 'Cargo.toml'
- 'Cargo.lock'
- '.github/workflows/review.yml'
env:
CARGO_INCREMENTAL: 0
jobs:
rust:
strategy:
matrix:
include:
- ghimage: ubuntu-24.04
dockerarch: linux/amd64
mcarch: amd64
- ghimage: ubuntu-24.04-arm
dockerarch: linux/arm64
mcarch: arm64
permissions:
packages: write
checks: write
contents: read
deployments: write
runs-on: ${{ matrix.ghimage }}
steps:
- uses: actions/checkout@v6.0.1
- name: Get Rust toolchain
id: toolchain
run: |
awk -F'[ ="]+' '$1 == "channel" { print "toolchain=" $2 }' rust-toolchain >> "$GITHUB_OUTPUT"
- name: install clippy
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ steps.toolchain.outputs.toolchain }}
components: clippy
- name: cache dependencies
uses: Swatinem/rust-cache@v2.8.2
- name: clippy check
uses: yanorei32/action-clippy@50412b135153ebee7d4b8a5b868c4defdc663683
with:
reporter: github-pr-review
- name: unit test
run: |
cargo test --no-run --locked
cargo test