4747 strategy :
4848 fail-fast : false
4949 matrix :
50- framework : ["net9.0", "net6.0"]
50+ framework : ["net10.0", " net9.0", "net6.0"]
5151
5252 integration :
5353 name : Integration Tests
@@ -80,13 +80,13 @@ jobs:
8080 ${{ runner.os }}-nuget-
8181
8282 - name : Setup .NET Core
83- uses : actions/setup-dotnet@v4
83+ uses : actions/setup-dotnet@v5
8484 with :
8585 dotnet-version : |
86- 9 .x
86+ 10 .x
8787
8888 - name : Test
89- run : dotnet test ClickHouse.Driver.IntegrationTests/ClickHouse.Driver.IntegrationTests.csproj --framework net9 .0 --configuration Release --verbosity normal --logger GitHubActions /clp:ErrorsOnly /p:CollectCoverage=true /p:CoverletOutputFormat=cobertura /p:SkipAutoProps=true
89+ run : dotnet test ClickHouse.Driver.IntegrationTests/ClickHouse.Driver.IntegrationTests.csproj --framework net10 .0 --configuration Release --verbosity normal --logger GitHubActions /clp:ErrorsOnly /p:CollectCoverage=true /p:CoverletOutputFormat=cobertura /p:SkipAutoProps=true
9090 env :
9191 CLICKHOUSE_CONNECTION : Host=localhost;Port=8123;Username=test;Password=test1234
9292 CLICKHOUSE_VERSION : latest
@@ -109,14 +109,14 @@ jobs:
109109 ${{ runner.os }}-nuget-
110110
111111 - name : Setup .NET Core
112- uses : actions/setup-dotnet@v4
112+ uses : actions/setup-dotnet@v5
113113 with :
114114 dotnet-version : |
115- 9 .x
115+ 10 .x
116116
117117 - name : Test
118118 run : dotnet test ClickHouse.Driver.Tests/ClickHouse.Driver.Tests.csproj
119- --framework net9 .0 --configuration Release --verbosity normal --logger GitHubActions
119+ --framework net10 .0 --configuration Release --verbosity normal --logger GitHubActions
120120 /clp:ErrorsOnly /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:SkipAutoProps=true
121121 --filter "Category=Cloud"
122122 env :
@@ -148,9 +148,15 @@ jobs:
148148 restore-keys : |
149149 ${{ runner.os }}-nuget-
150150
151+ - name : Setup .NET Core
152+ uses : actions/setup-dotnet@v5
153+ with :
154+ dotnet-version : |
155+ 10.x
156+
151157 - name : Test
152158 run : dotnet test ClickHouse.Driver.Tests/ClickHouse.Driver.Tests.csproj
153- --framework net9 .0 --configuration Release --verbosity normal --logger GitHubActions
159+ --framework net10 .0 --configuration Release --verbosity normal --logger GitHubActions
154160 /clp:ErrorsOnly /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:SkipAutoProps=true
155161 env :
156162 CLICKHOUSE_CONNECTION : Host=localhost;Port=8123;Username=default
@@ -180,9 +186,15 @@ jobs:
180186 restore-keys : |
181187 ${{ runner.os }}-nuget-
182188
189+ - name : Setup .NET Core
190+ uses : actions/setup-dotnet@v5
191+ with :
192+ dotnet-version : |
193+ 10.x
194+
183195 - name : Test
184196 run : dotnet test ClickHouse.Driver.Tests/ClickHouse.Driver.Tests.csproj
185- --framework net9 .0 --configuration Release --verbosity normal --logger GitHubActions
197+ --framework net10 .0 --configuration Release --verbosity normal --logger GitHubActions
186198 /clp:ErrorsOnly /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:SkipAutoProps=true
187199 env :
188200 CLICKHOUSE_CONNECTION : Host=localhost;Port=8123;Username=default
0 commit comments