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 f832dee commit c1b7ebeCopy full SHA for c1b7ebe
.github/workflows/dotnet.yml
@@ -0,0 +1,27 @@
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: 9.0.x
22
+ - name: Restore dependencies
23
+ run: dotnet restore
24
+ - name: Build
25
+ run: dotnet build --no-restore
26
+ - name: Test
27
+ run: dotnet test --no-build --verbosity normal
0 commit comments