Skip to content

Commit

Permalink
another attempt to allow multi framework support
Browse files Browse the repository at this point in the history
  • Loading branch information
Victor Benarbia committed Feb 17, 2024
1 parent 8daae8e commit dd76bab
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet: ['8.0.x']
dotnet: ['7.0.x', '8.0.x']
#dotnet: ['6.0.x', '7.0.x', '8.0.x']
name: test with Dotnet ${{ matrix.dotnet }} test
steps:
Expand All @@ -17,7 +17,7 @@ jobs:
with:
dotnet-version: ${{ matrix.dotnet }}
- name: test
run: make all
run: dotnet test
env:
API_KEY: ${{secrets.API_KEY}}
DOTNET_VERSION: ${{matrix.dotnet}}
3 changes: 3 additions & 0 deletions serpapi/serpapi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@
<RepositoryType>git</RepositoryType>
<EnableDynamicLoading>true</EnableDynamicLoading>
</PropertyGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" PrivateAssets="All" />
</ItemGroup>
Expand Down

0 comments on commit dd76bab

Please sign in to comment.