We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da4a9d1 commit af110c5Copy full SHA for af110c5
1 file changed
.github/workflows/dotnet.yml
@@ -0,0 +1,28 @@
1
+name: .NET
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
13
+ defaults:
14
+ run:
15
+ working-directory: ./src
16
17
+ steps:
18
+ - uses: actions/checkout@v4
19
+ - name: Setup .NET
20
+ uses: actions/setup-dotnet@v4
21
+ with:
22
+ dotnet-version: 9.0.x
23
+ - name: Restore dependencies
24
+ run: dotnet restore
25
+ - name: Build
26
+ run: dotnet build --no-restore
27
+ - name: Test
28
+ run: dotnet test --no-build --verbosity normal
0 commit comments