async-curl 0.1.5

This will perform curl Easy2 asynchronously for rust-lang using curl::multi and tokio
Documentation
name: Rust

on:
  push:
    branches: [ "master" ]
  pull_request:
    branches: [ "master" ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v3
    - name: Check fmt
      run: cargo fmt --all -- --check
    - name: Doc tests
      run: cargo test --doc
    - name: Clippy
      run: cargo clippy --all --all-features -- --deny warnings
    - name: Build
      run: cargo build --verbose
    - name: Run tests
      run: cargo test --verbose