miri #683
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 | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| on: | |
| push: | |
| branches: [ master ] | |
| workflow_dispatch: | |
| schedule: [cron: "20 */8 * * *"] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build_and_test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: install miri | |
| run: rustup component add --toolchain nightly-x86_64-unknown-linux-gnu miri | |
| - name: Run miri tests avl | |
| run: cd avl; ../scripts/miri.sh | |
| - name: Run miri tests btree | |
| run: cd btree; ../scripts/miri.sh | |
| - name: Run miri tests constvec | |
| run: cd constvec; ../scripts/miri.sh | |
| - name: Run miri tests seglist | |
| run: cd seglist; ../scripts/miri.sh | |
| - name: Run miri tests slist | |
| run: cd slist; ../scripts/miri.sh | |
| - name: Run miri tests dlist | |
| run: cd dlist; ../scripts/miri.sh |