Skip to content

Commit b2708f9

Browse files
committed
Fix CI build: specify project paths explicitly
1 parent 90af34d commit b2708f9

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ jobs:
2222
9.0.x
2323
10.0.x
2424
- name: Build
25-
run: dotnet build --configuration Release
25+
run: |
26+
dotnet build --configuration Release src/Lavr.Configuration.Yaml
27+
dotnet build --configuration Release tests/Lavr.Configuration.Yaml.Tests
2628
- name: Test
2729
run: dotnet test tests/Lavr.Configuration.Yaml.Tests --no-build --configuration Release

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ jobs:
2222
9.0.x
2323
10.0.x
2424
- name: Build
25-
run: dotnet build --configuration Release
25+
run: |
26+
dotnet build --configuration Release src/Lavr.Configuration.Yaml
27+
dotnet build --configuration Release tests/Lavr.Configuration.Yaml.Tests
2628
- name: Test
2729
run: dotnet test tests/Lavr.Configuration.Yaml.Tests --no-build --configuration Release
2830
- name: Pack

0 commit comments

Comments
 (0)