Add dependency Microsoft.Web.WebView2
#4
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: CI | |
on: | |
push: | |
branches: | |
- main | |
- release/** | |
pull_request: | |
types: [opened, synchronize, reopened] | |
branches: | |
- main | |
- release/** | |
env: | |
STEP_TIMEOUT_MINUTES: 60 | |
jobs: | |
build: | |
name: Integrate | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
project: | |
- Rebound/Rebound.csproj | |
# Add more in the future as more projects are added | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Dependencies | |
timeout-minutes: ${{ fromJSON(env.STEP_TIMEOUT_MINUTES) }} | |
uses: "./.github/steps/install_dependencies" | |
- name: Setup MSBuild | |
uses: microsoft/[email protected] | |
- name: Build ${{ matrix.project }} | |
shell: pwsh | |
run: msbuild ${{ matrix.project }} /p:Configuration=Release /p:Runtime=x64 /r |