From 4d0e835077e995b4bff0f3fb0e7ad35e65d2c275 Mon Sep 17 00:00:00 2001 From: Lennard Kittner Date: Fri, 20 Mar 2026 13:52:20 +0100 Subject: [PATCH] Also build windows on push --- .github/workflows/rust.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 98305b3..96021ff 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -34,9 +34,20 @@ jobs: - name: test run: cargo test + build-windows: + runs-on: windows-latest + steps: + - uses: actions/checkout@v3 + with: + submodules: recursive + - name: Build + run: cargo build --verbose + - name: test + run: cargo test + publish-aur: runs-on: ubuntu-latest - needs: [build-linux, build-macos] + needs: [build-linux, build-macos, build-windows] if: github.event_name == 'push' && github.ref == 'refs/heads/main' steps: - uses: actions/checkout@v3