Skip to content

Commit

Permalink
Update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
BobLd committed Oct 6, 2024
1 parent aecc801 commit cc73df6
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/dotnet-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
dotnet-version: 8.0.x
- name: Install mscorefonts
run: sudo apt-get -y install ttf-mscorefonts-installer
- name: Install dependencies
run: dotnet restore
- name: Build net6.0
run: dotnet build --configuration Release --no-restore --framework net6.0
- name: Test net6.0
run: dotnet test --no-restore --verbosity minimal --framework net6.0
- name: Build net8.0
run: dotnet build --configuration Release --no-restore --framework net8.0
- name: Test net8.0
run: dotnet test --no-restore --verbosity minimal --framework net8.0
10 changes: 5 additions & 5 deletions .github/workflows/dotnet-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
dotnet-version: 8.0.x
- name: Install dependencies
run: dotnet restore
- name: Build net6.0
run: dotnet build --configuration Release --no-restore --framework net6.0
- name: Test net6.0
run: dotnet test --no-restore --verbosity minimal --framework net6.0
- name: Build net8.0
run: dotnet build --configuration Release --no-restore --framework net8.0
- name: Test net8.0
run: dotnet test --no-restore --verbosity minimal --framework net8.0
2 changes: 1 addition & 1 deletion .github/workflows/dotnet-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
dotnet-version: 8.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion Tabula.Tests/Tabula.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>

<IsPackable>false</IsPackable>

Expand Down

0 comments on commit cc73df6

Please sign in to comment.