build: Powershell script to install dependencies for MSVC #40
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test MSVC (Visual Studio 2022) Developer Build | |
on: | |
pull_request: | |
paths: | |
- 'develop.ps1' | |
branches: | |
- '*' | |
push: | |
paths: | |
- 'develop.ps1' | |
branches: | |
- 'develop' | |
- 'release/**' | |
jobs: | |
Develop: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Develop MSVC | |
uses: "./.github/workflows/visual-studio" | |
with: | |
publishType: 'none' |