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 22cd681 commit a3e6d55Copy full SHA for a3e6d55
.github/workflows/dotnet.yml
@@ -0,0 +1,29 @@
1
+name: .NET
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - uses: actions/build@main
16
+ - name: Setup .Net Core 3.1
17
+ uses: actions/setup-dotnet@v1
18
+ with:
19
+ dotnet-version: 3.1.x
20
+ - name: Setup .NET
21
22
23
+ dotnet-version: 5.0.x
24
+ - name: Restore dependencies
25
+ run: dotnet restore
26
+ - name: Build
27
+ run: dotnet build --no-restore
28
+ - name: Test
29
+ run: dotnet test --no-build --verbosity normal
0 commit comments