miri_dev #26
  
    
      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: miri_dev | |
| on: | |
| workflow_dispatch: | |
| schedule: [cron: "20 */6 * * *"] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build_and_test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| ref: dev | |
| - name: install miri | |
| run: rustup component add --toolchain nightly-x86_64-unknown-linux-gnu miri | |
| - name: Run miri tests without log (tokio multi thread) | |
| run: scripts/miri.sh |