Skip to content

Commit cc73df6

Browse files
committed
Update workflows
1 parent aecc801 commit cc73df6

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/dotnet-linux.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616
- name: Setup .NET Core
1717
uses: actions/setup-dotnet@v1
1818
with:
19-
dotnet-version: 6.0.x
19+
dotnet-version: 8.0.x
2020
- name: Install mscorefonts
2121
run: sudo apt-get -y install ttf-mscorefonts-installer
2222
- name: Install dependencies
2323
run: dotnet restore
24-
- name: Build net6.0
25-
run: dotnet build --configuration Release --no-restore --framework net6.0
26-
- name: Test net6.0
27-
run: dotnet test --no-restore --verbosity minimal --framework net6.0
24+
- name: Build net8.0
25+
run: dotnet build --configuration Release --no-restore --framework net8.0
26+
- name: Test net8.0
27+
run: dotnet test --no-restore --verbosity minimal --framework net8.0

.github/workflows/dotnet-mac.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
- name: Setup .NET Core
1515
uses: actions/setup-dotnet@v1
1616
with:
17-
dotnet-version: 6.0.x
17+
dotnet-version: 8.0.x
1818
- name: Install dependencies
1919
run: dotnet restore
20-
- name: Build net6.0
21-
run: dotnet build --configuration Release --no-restore --framework net6.0
22-
- name: Test net6.0
23-
run: dotnet test --no-restore --verbosity minimal --framework net6.0
20+
- name: Build net8.0
21+
run: dotnet build --configuration Release --no-restore --framework net8.0
22+
- name: Test net8.0
23+
run: dotnet test --no-restore --verbosity minimal --framework net8.0

.github/workflows/dotnet-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Setup .NET Core
1515
uses: actions/setup-dotnet@v1
1616
with:
17-
dotnet-version: 6.0.x
17+
dotnet-version: 8.0.x
1818
- name: Install dependencies
1919
run: dotnet restore
2020
- name: Build

Tabula.Tests/Tabula.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55

66
<IsPackable>false</IsPackable>
77

0 commit comments

Comments
 (0)