name: cron-master-async_std-arm
on:
schedule: [cron: "0 */5 * * *"]
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
runs-on: "macos-15"
steps:
- uses: actions/checkout@v2
- uses: taiki-e/install-action@nextest
- name: Run tests with async_std
run: env WORKFLOW=1 make test_async_std
- name: Run test with async_std release
run: env WORKFLOW=1 make test_async_std_release
- name: Run test with async_std release and trace_log
run: cd test-suite; WORKFLOW=1 exec cargo nextest run -F="async_std,trace_log" --hide-progress-bar -j 1 --no-capture -r