We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbf6cf8 commit 79bc69aCopy full SHA for 79bc69a
.github/workflows/dotnetcore.yml
@@ -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