Skip to content

Commit af5c222

Browse files
authored
Update buildPipeline.yml
1 parent abe20c5 commit af5c222

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/buildPipeline.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: build
22

33
on:
44
push:
5-
branches: [master, main]
5+
branches: [master, main, Phase06]
66
pull_request:
77
branches: [master, main]
88

@@ -17,18 +17,19 @@ jobs:
1717
uses: actions/setup-dotnet@v2
1818
with:
1919
dotnet-version: 8.0.x
20+
cache: true
2021

2122
- name: Install dependencies
2223
run: dotnet restore
23-
working-directory: Phase05/
24+
working-directory: ./
2425

2526
- name: Build
2627
run: dotnet build --configuration Release --no-restore
27-
working-directory: Phase05/
28+
working-directory: ./
2829

2930
- name: Test
3031
run: dotnet test --no-restore --verbosity normal --collect:"XPlat Code Coverage"
31-
working-directory: Phase05/
32+
working-directory: ./
3233

3334
- name: Publish code coverage reports to codecove.io
3435
uses: codecov/codecov-action@v1

0 commit comments

Comments
 (0)