Skip to content

Bump hyper from 0.14.27 to 1.0.0 #24

Bump hyper from 0.14.27 to 1.0.0

Bump hyper from 0.14.27 to 1.0.0 #24

Workflow file for this run

on:
push:
branches: [main]
pull_request:
# Stop CI if a commit is pushed.
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
name: test
jobs:
required:
runs-on: ubuntu-latest
name: ubuntu / ${{ matrix.toolchain }}
strategy:
matrix:
toolchain: [stable, beta]
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install ${{ matrix.toolchain }}
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
- name: cargo test --locked
run: cargo test --locked --all-features --all-targets
- name: cargo test --doc
run: cargo test --locked --all-features --doc