We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 208dd31 commit 0c7ea0eCopy full SHA for 0c7ea0e
1 file changed
.github/workflows/dotnet.yml
@@ -0,0 +1,32 @@
1
+# This workflow will build a .NET project
2
+# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
3
+
4
+name: .NET
5
6
+on:
7
+ push:
8
+ branches: [ "main" ]
9
+ pull_request:
10
11
12
+jobs:
13
+ build:
14
15
+ runs-on: windows-latest
16
17
+ steps:
18
+ - uses: actions/checkout@v4
19
+ - name: Setup .NET 6
20
+ uses: actions/setup-dotnet@v4
21
+ with:
22
+ dotnet-version: 6.0.x
23
+ - name: Setup .NET 8
24
25
26
+ dotnet-version: 8.0.x
27
+ - name: Restore dependencies
28
+ run: dotnet restore
29
+ - name: Build
30
+ run: dotnet build --no-restore
31
+ - name: Test
32
+ run: dotnet test --no-build --verbosity normal
0 commit comments