async-recursion 0.3.2

Recursion for async functions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: Push action
on: [push]
jobs:
  test:
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os: [ubuntu-latest]
        rust: [stable]

    steps:
      - uses: hecrj/setup-rust-action@v1
        with:
          rust-version: ${{ matrix.rust }}
      - uses: actions/checkout@master
      - name: Tests
        run: cargo fmt -- --check && cargo clippy -- -Dwarnings && cargo test --verbose