crossfire 3.1.8

channels for async and threads
Documentation
name: cron-dev

on:
  schedule: [cron: "0 */6 * * *"]
  workflow_dispatch:

env:
  CARGO_TERM_COLOR: always

jobs:
  build_and_test:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
      with:
          ref: dev
    - name: Build
      run: cargo build --verbose

    - name: Run tests with tokio multi-thread
      run: env WORKFLOW=1 make test

    - name: Run tests with tokio single-thread
      run: env WORKFLOW=1 SINGLE_THREAD_RUNTIME=1 make test

    - name: Run tests with --release
      run: env WORKFLOW=1 make test_release

    - name: Run tests with async_std
      run: env WORKFLOW=1 make test_async_std