Skip to content

Bump http to 1.0.0 (#54) #175

Bump http to 1.0.0 (#54)

Bump http to 1.0.0 (#54) #175

Workflow file for this run

name: ci
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- uses: taiki-e/install-action@cargo-hack
- name: Check
run: cargo hack check --optional-deps --feature-powerset --no-dev-deps
- name: Run tests
run: cargo hack test --optional-deps --feature-powerset
- name: Fmt
run: cargo fmt -- --check
- name: Clippy
run: RUSTFLAGS="-Dwarnings" cargo hack clippy --optional-deps --feature-powerset