Skip to content

Commit d1f3d86

Browse files
committed
Added build workflow
1 parent 62a9ac4 commit d1f3d86

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/build.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches: [v2.4]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v1
13+
- name: Setup .NET Core
14+
uses: actions/setup-dotnet@v1
15+
with:
16+
dotnet-version: '2.1.x'
17+
- name: Box2D Build
18+
run: dotnet build src/ -c Release

0 commit comments

Comments
 (0)