Merge remote-tracking branch 'origin/develop' into develop #19
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 | |
- name: Build docs | |
run: yarn gen |