Skip to content

Commit 79bc69a

Browse files
author
ChrisDill
committed
Added .github folder with workflow for github actions.
- Setting up continuous integration based on the workflow from Raylib-cs.
1 parent dbf6cf8 commit 79bc69a

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/dotnetcore.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: .NET Core
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
name: Build on dotnet using ${{ matrix.os }}
8+
runs-on: ${{ matrix.os }}
9+
strategy:
10+
matrix:
11+
os: [ubuntu-latest, windows-latest, macOS-latest]
12+
13+
steps:
14+
- uses: actions/checkout@v1
15+
- name: Setup .NET Core
16+
uses: actions/setup-dotnet@v1
17+
with:
18+
dotnet-version: 3.1.100
19+
- name: Build with dotnet
20+
run: dotnet build --framework=netcoreapp3.1 -c Release

0 commit comments

Comments
 (0)