Skip to content

Commit 11b4336

Browse files
Merge pull request #914 from erikdarlingdata/feature/consolidate-ci-workflows
Consolidate CI workflows: fold ci.yml into build.yml
2 parents 8bde6fd + 9696ee8 commit 11b4336

2 files changed

Lines changed: 8 additions & 37 deletions

File tree

.github/workflows/build.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Build
22

33
on:
44
push:
5-
branches: [main]
5+
branches: [main, dev]
66
pull_request:
77
branches: [main, dev]
88
release:
@@ -30,6 +30,13 @@ jobs:
3030
dotnet restore Dashboard/Dashboard.csproj
3131
dotnet restore Lite/PerformanceMonitorLite.csproj
3232
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
3340

3441
- name: Get version
3542
id: version

.github/workflows/ci.yml

Lines changed: 0 additions & 36 deletions
This file was deleted.

0 commit comments

Comments
 (0)