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