We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 44fa118 + 26f0d54 commit 81442e5Copy full SHA for 81442e5
1 file changed
.github/workflows/dotnet.yml
@@ -0,0 +1,24 @@
1
+name: .NET
2
+
3
+on:
4
+ push:
5
+ branches: [ "master" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v3
15
+ - name: Setup .NET
16
+ uses: actions/setup-dotnet@v3
17
+ with:
18
+ dotnet-version: '8.0.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-build --verbosity normal
0 commit comments