Also build windows on push

This commit is contained in:
Lennard Kittner
2026-03-20 13:52:20 +01:00
parent 08dce94738
commit 4d0e835077

View File

@@ -34,9 +34,20 @@ jobs:
- name: test - name: test
run: cargo 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: publish-aur:
runs-on: ubuntu-latest 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' if: github.event_name == 'push' && github.ref == 'refs/heads/main'
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3