git2-hyper 0.1.1

Backend for an HTTP transport in libgit2 powered by hyper. Intended to be used with the git2 crate.
Documentation
name: CI
on: [push, pull_request]

jobs:
  test:
    name: Test
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        build: [1.53.0, stable, beta, nightly, macos, windows]
        include:
          - build: 1.53.0
            os: ubuntu-latest
            rust: stable
          - build: stable
            os: ubuntu-latest
            rust: stable
          - build: beta
            os: ubuntu-latest
            rust: beta
          - build: nightly
            os: ubuntu-latest
            rust: nightly
          - build: macos
            os: macos-latest
            rust: stable
          - build: windows
            os: windows-latest
            rust: stable
    steps:
      - uses: actions/checkout@master
      - uses: actions-rs/toolchain@v1
        with:
          toolchain: ${{ matrix.rust }}
      - uses: Swatinem/rust-cache@v1
      - run: cargo test
      - run: cargo test --no-default-features --features rustls
      - run: cargo run --example clone https://github.com/henry40408/git2-hyper.git /tmp/git2-hyper

  rustfmt:
    name: Rustfmt
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@master
      - uses: actions-rs/toolchain@v1
        with:
          toolchain: stable
      - uses: Swatinem/rust-cache@v1
      - run: cargo fmt -- --check