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 9586728 commit 40c3867Copy full SHA for 40c3867
.github/workflows/dotnetcore.yml
@@ -0,0 +1,17 @@
1
+name: .NET Core
2
+
3
+on: [push]
4
5
+jobs:
6
+ build:
7
8
+ runs-on: ubuntu-latest
9
10
+ steps:
11
+ - uses: actions/checkout@v2
12
+ - name: Setup .NET Core
13
+ uses: actions/setup-dotnet@v1
14
+ with:
15
+ dotnet-version: 2.2.108
16
+ - name: Build with dotnet
17
+ run: dotnet build --configuration Release
0 commit comments