Skip to content

support async closures using a enum and closure trait #19

support async closures using a enum and closure trait

support async closures using a enum and closure trait #19

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
feature-matrix:
uses: ./.github/workflows/feature-matrix.yml
build:
name: build ${{ matrix.package.name }} (${{ matrix.package.features }})
runs-on: ubuntu-latest
needs: [feature-matrix]
strategy:
fail-fast: false
matrix:
package: ${{ fromJson(needs.feature-matrix.outputs.matrix) }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Build
run: >-
cargo build --package "${{ matrix.package.name }}" --no-default-features --features "${{ matrix.package.features }}" --tests --benches --examples --all-targets