Skip to content

Commit

Permalink
Merge pull request #2 from jamievlin/ci-windows
Browse files Browse the repository at this point in the history
add stub windows CI
  • Loading branch information
jamievlin authored Dec 30, 2023
2 parents 60024dd + 0078b61 commit 977b8d3
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/build-asy-windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: build-asy-cxx-windows
on:
pull_request:
branches:
- "master"
- "a/*"
jobs:
configure-windows-msvc-x64:
runs-on: "windows-2022"
steps:
- shell: pwsh
run: Write-Output "hi"
build-windows-msvc-x64:
needs: configure-windows-msvc-x64
runs-on: "windows-2022"
steps:
- shell: pwsh
run: Write-Output "hi"

0 comments on commit 977b8d3

Please sign in to comment.