We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 35abd6b + 26a8142 commit 008a7e2Copy full SHA for 008a7e2
.github/workflows/dotnet.yml
@@ -0,0 +1,28 @@
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
+ push:
8
+ branches: [ "master" ]
9
+ pull_request:
10
11
12
+jobs:
13
+ build:
14
15
+ runs-on: ubuntu-latest
16
17
+ steps:
18
+ - uses: actions/checkout@v3
19
+ - name: Setup .NET
20
+ uses: actions/setup-dotnet@v3
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 --filter FullyQualifiedName!~Workstation.UaClient.IntegrationTests
.github/workflows/unittests.yml
0 commit comments