We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51f0468 commit 35aad32Copy full SHA for 35aad32
1 file changed
.github/workflows/ci.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
12
+ runs-on: ubuntu-latest
13
+ defaults:
14
+ run:
15
+ working-directory: Api
16
17
+ steps:
18
+ - uses: actions/checkout@v2
19
+ - name: Setup .NET
20
+ uses: actions/setup-dotnet@v1
21
+ with:
22
+ dotnet-version: 6.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