Skip to content

Commit fa6e6a2

Browse files
committed
workflow version updated
1 parent 3798918 commit fa6e6a2

File tree

2 files changed

+14
-16
lines changed

2 files changed

+14
-16
lines changed

.github/workflows/UnitTests.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,13 @@ on: [push, pull_request, release]
44

55
jobs:
66
test:
7-
87
runs-on: [windows-latest]
98

109
steps:
11-
- uses: actions/checkout@v2
12-
- name: Setup .NET Core
13-
uses: actions/setup-dotnet@v1
14-
with:
15-
dotnet-version: 3.0.100
16-
- name: Run Unit Tests
17-
run: dotnet test
10+
- uses: actions/checkout@v2
11+
- name: Setup .NET Core
12+
uses: actions/setup-dotnet@v1
13+
with:
14+
dotnet-version: 8.0
15+
- name: Run Unit Tests
16+
run: dotnet test

.github/workflows/dotnetcore.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,16 @@ on: [push, pull_request, release]
44

55
jobs:
66
build:
7-
87
runs-on: ${{matrix.os}}
98
strategy:
109
matrix:
1110
os: [ubuntu-latest, windows-latest]
1211

1312
steps:
14-
- uses: actions/checkout@v1
15-
- name: Setup .NET Core
16-
uses: actions/setup-dotnet@v1
17-
with:
18-
dotnet-version: 3.0.100
19-
- name: Build with dotnet
20-
run: dotnet build --configuration Release
13+
- uses: actions/checkout@v1
14+
- name: Setup .NET Core
15+
uses: actions/setup-dotnet@v1
16+
with:
17+
dotnet-version: 8.0
18+
- name: Build with dotnet
19+
run: dotnet build --configuration Release

0 commit comments

Comments
 (0)