Skip to content

Bump h2 from 0.3.24 to 0.3.26 #60

Bump h2 from 0.3.24 to 0.3.26

Bump h2 from 0.3.24 to 0.3.26 #60

Workflow file for this run

name: CI
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install minimal stable with clippy and rustfmt
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- name: Check formatting
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all --check
- name: Build application
uses: actions-rs/cargo@v1
with:
command: build
- name: Run clippy linter
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets -- --deny warnings
- name: Run tests
uses: actions-rs/cargo@v1
with:
command: test