Skip to content

Add a schedule combinator that makes it easier to add progress reporting #39

Add a schedule combinator that makes it easier to add progress reporting

Add a schedule combinator that makes it easier to add progress reporting #39

Workflow file for this run

on: [push]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
profile: minimal
components: rustfmt, clippy
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets --all-features -- --deny warnings
- uses: actions-rs/cargo@v1
with:
command: test
args: --all-features