Split Windows with PowerShell

This commit is contained in:
Chris Boesch 2023-04-28 11:29:18 +00:00 committed by GitHub
parent c168c5f9cd
commit eaf391a867
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,10 +13,10 @@ defaults:
shell: bash
jobs:
build:
build-linux_mac:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
timeout-minutes: 30
steps:
@ -30,3 +30,19 @@ jobs:
- name: Run Eowyn
run: patches/eowyn.sh
build-windows:
runs-on: windows-latest
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Zig
uses: goto-bus-stop/setup-zig@v2
with:
version: master
- name: Run Eowyn
run: patches/eowyn.sh
shell: pwsh