Skip to content

Commit 84f8496

Browse files
committed
Updates to workflow files
1 parent 792ec86 commit 84f8496

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/CI-CD-Docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
files: '["docs/*.md", "docs/**/*.md", "*.csproj", "**/*.csproj"]'
2828
- uses: actions/setup-dotnet@v1
2929
with:
30-
dotnet-version: '3.1.101'
30+
dotnet-version: '3.1.201'
3131
- name: Building library and docs
3232
run: |
3333
dotnet build src/bunit.csproj

.github/workflows/CI.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ jobs:
2828
files: '["*.csproj", "**/*.csproj"]'
2929
- uses: actions/setup-dotnet@v1
3030
with:
31-
dotnet-version: '3.1.101'
31+
dotnet-version: '3.1.201'
3232
- name: Building and verifying library
3333
run: |
34-
dotnet build -c Release
35-
dotnet test -c Release /nowarn:CS1591
34+
dotnet build src -c Release
35+
dotnet test src -c Release /nowarn:CS1591
3636
dotnet build sample -c Release
3737
dotnet test sample -c Release
3838
- name: Creating library package

.github/workflows/nuget-pack-push.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ jobs:
2929
files: '["*.csproj", "**/*.csproj"]'
3030
- uses: actions/setup-dotnet@v1
3131
with:
32-
dotnet-version: '3.1.100'
32+
dotnet-version: '3.1.201'
3333
- name: Building and verifying library
3434
run: |
35-
dotnet build -c Release /nowarn:CS1591
36-
dotnet test -c Release /nowarn:CS1591
35+
dotnet build src -c Release /nowarn:CS1591
36+
dotnet test src -c Release /nowarn:CS1591
3737
- name: Creating library package
3838
run: dotnet pack src/ -c Release -o ${GITHUB_WORKSPACE}/lib -p:version=$VERSION /nowarn:CS1591
3939
- name: Buidling template package

0 commit comments

Comments
 (0)