Skip to content

Commit

Permalink
Add GitHub action to build PhysisSharp
Browse files Browse the repository at this point in the history
  • Loading branch information
redstrate committed Apr 28, 2024
1 parent 52c40a8 commit a8f881f
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Main

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:
runs-on: windows-latest

steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: 'yes'

- name: Install .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x

- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v2

- name: Build
run: dotnet build

0 comments on commit a8f881f

Please sign in to comment.