We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1177372 commit afbcd30Copy full SHA for afbcd30
.github/workflows/dotnet.yml
@@ -0,0 +1,23 @@
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
+ steps:
13
+ - uses: actions/checkout@v3
14
+ - name: Setup .NET
15
+ uses: actions/setup-dotnet@v3
16
+ with:
17
+ dotnet-version: 7.0.x
18
+ - name: Restore dependencies
19
+ run: dotnet restore
20
+ - name: Build
21
+ run: dotnet build --no-restore
22
+ - name: Test
23
+ run: dotnet test --no-build --verbosity normal
0 commit comments