name: cron-2.0-arm
on:
schedule: [cron: "30 */5 * * *"]
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
runs-on: "macos-15"
steps:
- uses: actions/checkout@v2
with:
ref: v2.0
- name: Run tests with tokio multi-thread
run: env WORKFLOW=1 make test
- name: Run tests with --release
run: env WORKFLOW=1 make test_release
- name: Run tests with --release tokio single-thread
run: env WORKFLOW=1 SINGLE_THREAD_RUNTIME=1 make test_release