We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f9e4bd7 + f0ad57e commit 462693fCopy full SHA for 462693f
.github/workflows/dotnet.yml
@@ -0,0 +1,26 @@
1
+# This workflow will build a .NET project
2
+# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
3
+
4
+name: .NET
5
6
+on:
7
+ pull_request:
8
+ branches: [ "master", "development" ]
9
10
+jobs:
11
+ build-and-test:
12
13
+ runs-on: ubuntu-22.04
14
15
+ steps:
16
+ - uses: actions/checkout@v3
17
+ - name: Setup .NET
18
+ uses: actions/setup-dotnet@v3
19
+ with:
20
+ dotnet-version: 7.0.400
21
+ - name: Restore dependencies
22
+ run: dotnet restore
23
+ - name: Build
24
+ run: dotnet build --no-restore
25
+ - name: Test
26
+ run: dotnet test --no-build --verbosity normal
0 commit comments