feat: 支持在条件语句中对不正确的模板用法进行检查 #11
This file contains 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: Run unit test | |
on: | |
push: | |
paths: | |
- "src/**" | |
- "examples/**" | |
pull_request: | |
paths: | |
- "src/**" | |
- "examples/**" | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
test: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: Swatinem/[email protected] | |
- name: Build | |
run: cargo build | |
- name: Run tests | |
run: cargo test -- --test-threads 1 |