Skip to content

Bump h2 from 0.3.13 to 0.3.26 #263

Bump h2 from 0.3.13 to 0.3.26

Bump h2 from 0.3.13 to 0.3.26 #263

Workflow file for this run

name: Rust
on:
push:
branches:
- "*"
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
if: matrix.os == 'macOS-latest'
- name: build
run: cargo build --verbose
- name: test
run: cargo test --no-fail-fast --verbose --all -- --nocapture
env:
RUST_BACKTRACE: 1