-
-
Notifications
You must be signed in to change notification settings - Fork 9
41 lines (34 loc) · 881 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: CI
on:
push:
branches:
- main
- release/**
pull_request:
types: [opened, synchronize, reopened]
branches:
- main
- release/**
workflow_dispatch:
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=Debug /r