We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8bde6fd + 9696ee8 commit 11b4336Copy full SHA for 11b4336
2 files changed
.github/workflows/build.yml
@@ -2,7 +2,7 @@ name: Build
2
3
on:
4
push:
5
- branches: [main]
+ branches: [main, dev]
6
pull_request:
7
branches: [main, dev]
8
release:
@@ -30,6 +30,13 @@ jobs:
30
dotnet restore Dashboard/Dashboard.csproj
31
dotnet restore Lite/PerformanceMonitorLite.csproj
32
dotnet restore Installer/PerformanceMonitorInstaller.csproj
33
+ dotnet restore Lite.Tests/Lite.Tests.csproj
34
+
35
+ - name: Build Lite.Tests
36
+ run: dotnet build Lite.Tests/Lite.Tests.csproj -c Release --no-restore
37
38
+ - name: Run Lite tests
39
+ run: dotnet test Lite.Tests/Lite.Tests.csproj -c Release --no-build --verbosity normal
40
41
- name: Get version
42
id: version
.github/workflows/ci.yml
0 commit comments