Skip to content

update version. really #46

update version. really

update version. really #46

Workflow file for this run

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