update version. really #46
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: Windows MSVC build | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - run: git submodule update --init --recursive | |
| - name: Build | |
| run: cargo build --target x86_64-pc-windows-msvc --verbose | |
| - name: Run tests | |
| run: cargo test --target x86_64-pc-windows-msvc --verbose | |
| - name: Build example | |
| run: cargo build --target x86_64-pc-windows-msvc --example windows_test | |
| - name: Run example | |
| run: cargo run --target x86_64-pc-windows-msvc --example windows_test |