cron-master-tokio-x86 #31
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | name: cron-master-tokio-x86 | |
| on: | |
| schedule: [cron: "0 */5 * * *"] | |
| workflow_dispatch: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build_and_test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Build | |
| run: cargo build --verbose | |
| - name: Run tests with tokio multi-thread | |
| run: env WORKFLOW=1 make test | |
| - name: Run tests with tokio current-thread | |
| run: env WORKFLOW=1 SINGLE_THREAD_RUNTIME=1 make test | |
| - name: Run tests with tokio multi-thread --release | |
| run: env WORKFLOW=1 make test_release | |
| - name: Run tests with tokio current-thread --release | |
| run: env WORKFLOW=1 SINGLE_THREAD_RUNTIME=1 make test_release |