crossfire 3.1.10

channels for async and threads
Documentation
name: cron-master-threaded-arm

on:
  schedule: [cron: "20 */5 * * *"]
  workflow_dispatch:

env:
  CARGO_TERM_COLOR: always

jobs:
  build_and_test:

    runs-on: "macos-15"

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

    - name: Run tests
      run: env WORKFLOW=1 make test test_blocking_context

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