From 3c340b39b1f9cf2837347d7afc39f7663ce2de06 Mon Sep 17 00:00:00 2001 From: 4bb4 <67376761+4bb4@users.noreply.github.com> Date: Sun, 5 Dec 2021 08:00:34 +0100 Subject: [PATCH] Update rust.yml --- .github/workflows/rust.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) 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 + + +