Add item indexing support to windows-metadata
#133
Workflow file for this run
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 | |
on: | |
pull_request: | |
paths-ignore: | |
- '.github/ISSUE_TEMPLATE/**' | |
- 'web/**' | |
push: | |
paths-ignore: | |
- '.github/ISSUE_TEMPLATE/**' | |
- 'web/**' | |
branches: | |
- master | |
jobs: | |
check: | |
runs-on: windows-2022 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Update toolchain | |
run: rustup update --no-self-update nightly && rustup default nightly-x86_64-pc-windows-msvc | |
- name: Add toolchain target | |
run: rustup target add x86_64-pc-windows-msvc | |
- name: Add miri | |
run: rustup toolchain install nightly --component miri | |
- name: Check string literals | |
run: cargo miri test -p test_strings --test literals |