We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09504e6 commit 2abe1adCopy full SHA for 2abe1ad
.github/workflows/dotnet.yml
@@ -0,0 +1,29 @@
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
+name: .NET
4
+
5
+on:
6
+ push:
7
+ branches: [ "main" ]
8
+ pull_request:
9
10
11
+jobs:
12
+ build:
13
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ - name: Setup .NET
19
+ uses: actions/setup-dotnet@v4
20
+ with:
21
+ dotnet-version: |
22
+ 8.0.x
23
+ 9.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