Skip to content

Commit

Permalink
Add CI
Browse files Browse the repository at this point in the history
(first test)
  • Loading branch information
Lamparter authored Oct 6, 2024
1 parent 7d0f33c commit 4129aa9
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
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
- About/Rebound.About.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 /r

0 comments on commit 4129aa9

Please sign in to comment.