Skip to content

Commit

Permalink
Upgrade required ParquetSharp version and test framework versions (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamreeve authored May 23, 2024
1 parent 63e2959 commit e5f6f5e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 14 deletions.
22 changes: 10 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- name: Code formating check
run: |
dotnet tool restore
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- name: Build project
run: dotnet build ParquetSharp.DataFrame --configuration=Release
- name: Build NuGet package
Expand All @@ -60,15 +60,13 @@ jobs:
test-nuget:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
dotnet: [netcoreapp3.1, net6.0, net7.0]
arch: [x64]
os: [ubuntu-latest, macos-latest, macos-13, windows-latest] # macos-13 included for x64
dotnet: [net6.0, net7.0, net8.0]
include:
- os: windows-latest
dotnet: net472
arch: x64
fail-fast: false
name: Test NuGet package (.NET ${{ matrix.dotnet }} ${{ matrix.arch }} on ${{ matrix.os }})
name: Test NuGet package (.NET ${{ matrix.dotnet }} on ${{ matrix.os }})
runs-on: ${{ matrix.os }}
needs: build-nuget
steps:
Expand All @@ -83,20 +81,20 @@ jobs:
with:
name: nuget-package
path: nuget
- name: Setup .NET Core 3.1 SDK
if: matrix.dotnet == 'netcoreapp3.1'
uses: actions/setup-dotnet@v4
with:
dotnet-version: 3.1.x
- name: Setup .NET 6 SDK
if: matrix.dotnet == 'net6.0'
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
- name: Setup .NET 7 SDK
if: matrix.dotnet == 'net7.0'
uses: actions/setup-dotnet@v4
with:
dotnet-version: 7.0.x
- name: Setup .NET 8 SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Add local NuGet feed
run: |
dotnet new nugetconfig
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<ItemGroup>
<PackageReference Include="Microsoft.Data.Analysis" Version="0.20.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
<PackageReference Include="ParquetSharp" Version="4.0.0" />
<PackageReference Include="ParquetSharp" Version="5.0.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
2 changes: 1 addition & 1 deletion ParquetSharp.DataFrame/ParquetSharp.DataFrame.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.Data.Analysis" Version="0.20.1" />
<PackageReference Include="ParquetSharp" Version="4.0.0" />
<PackageReference Include="ParquetSharp" Version="5.0.0" />
</ItemGroup>

</Project>

0 comments on commit e5f6f5e

Please sign in to comment.