Skip to content
Closed
11 changes: 9 additions & 2 deletions .github/workflows/build-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,20 @@ on:

jobs:
test-win:
runs-on: windows-latest
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2.3.4

- name: Advance Security Compliance Action
uses: GeekMasher/advanced-security-compliance@v1.5
with:
severity: none
token: ${{ secrets.GITHUB_TOKEN }}

- name: Run tests on Windows for all targets
run: dotnet test -c Release
run: dotnet test -c Release

nuget:
runs-on: windows-latest
Expand Down
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,10 @@ RestSharp.IntegrationTests/config.json
/node_modules/
/out/
/docs/.vuepress/dist/
.vscode/
<<<<<<< HEAD

launch.json
tasks.json
=======
.vscode/
>>>>>>> d9aaf8e1790c7a8f3a3363bb259cbdeea24982f9
2 changes: 1 addition & 1 deletion test/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<PackageReference Include="NUnit" Version="3.13.*"/>
<PackageReference Include="NUnit3TestAdapter" Version="4.0.0"/>
<PackageReference Include="AutoFixture" Version="4.17.0"/>
<PackageReference Include="FluentAssertions" Version="5.10.3"/>
<PackageReference Include="FluentAssertions" Version="6.1.0"/>
<PackageReference Include="coverlet.collector" Version="3.0.3"/>
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2" PrivateAssets="All" />
</ItemGroup>
Expand Down