Skip to content

build(deps): bump h2 from 0.3.21 to 0.3.24 #53

build(deps): bump h2 from 0.3.21 to 0.3.24

build(deps): bump h2 from 0.3.21 to 0.3.24 #53

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
name: Test
strategy:
matrix:
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Cache rust artifacts
uses: Swatinem/rust-cache@v2
- name: Build binary for test
uses: actions-rs/cargo@v1
with:
command: build
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test