diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 09d6187..a3c8180 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -30,3 +30,29 @@ jobs: run: cd implot-examples/implot-glium-demo && cargo build - name: Build wgpu demo run: cd implot-examples/implot-wgpu-demo && cargo build + + build-win: + runs-on: windows-latest + + steps: + - uses: actions/checkout@v2 + - uses: jwsi/submodule-checkout@v1 + - name: Install latest rust toolchain + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + default: true + override: true + - name: Build + run: cargo build --verbose + - name: Run idiomatic bindings tests + run: cargo test --verbose + - name: Run FFI tests + run: cd implot-sys/ && cargo test --verbose + - name: Build glium demo + run: cd implot-examples/implot-glium-demo && cargo build + - name: Build wgpu demo + run: cd implot-examples/implot-wgpu-demo && cargo build + + +