-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add FOSSA and Exclude tests from Qodana scan (#120)
qodana --------- Co-authored-by: zingz0r <zingz0r@tothnet.hu>
- Loading branch information
Showing
23 changed files
with
137 additions
and
721 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: '🐯 FOSSA: License & security scan' | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
scan: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
fetch-depth: 0 | ||
|
||
- name: FOSSA Scan | ||
uses: fossas/fossa-action@main | ||
with: | ||
api-key: ${{ secrets.FOSSA_API_KEY }} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,4 @@ | |
/// <summary> | ||
/// Data type | ||
/// </summary> | ||
public interface IData | ||
{ | ||
} | ||
public interface IData; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,67 +1,27 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0;netstandard2.1;</TargetFrameworks> | ||
<PackageLicenseExpression> | ||
</PackageLicenseExpression> | ||
<PackageLicenseFile>LICENSE</PackageLicenseFile> | ||
<PackageIcon>nuget_logo.png</PackageIcon> | ||
<PackageIconUrl>https://raw.githubusercontent.com/zingz0r/CloudFlare.Client/master/CloudFlare.Client/Resources/nuget_logo.png</PackageIconUrl> | ||
<LangVersion>10.0</LangVersion> | ||
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild> | ||
<EnableNETAnalyzers>True</EnableNETAnalyzers> | ||
<AnalysisLevel>latest</AnalysisLevel> | ||
<CodeAnalysisRuleSet>StyleCop/stylecop.ruleset</CodeAnalysisRuleSet> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<CheckEolTargetFramework>false</CheckEolTargetFramework> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<IsPackable>true</IsPackable> | ||
<Authors>Tamás Tóth</Authors> | ||
<Company>TothNET</Company> | ||
<Description>.NET library for communication with the Cloudflare service API.</Description> | ||
<Copyright>Copyright © 2019 - CC BY-NC-ND 4.0</Copyright> | ||
<PackageProjectUrl>https://github.com/zingz0r/CloudFlare.Client</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/zingz0r/CloudFlare.Client</RepositoryUrl> | ||
<RepositoryType>GitHub</RepositoryType> | ||
<PackageTags>CloudFlare, DNS, DDNS,</PackageTags> | ||
<PackageReleaseNotes/> | ||
<NeutralLanguage>en</NeutralLanguage> | ||
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> | ||
<GeneratePackageOnBuild>false</GeneratePackageOnBuild> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<MajorVersion Condition="'$(MajorVersion)' == ''">1</MajorVersion> | ||
<MinorVersion Condition="'$(MinorVersion)' == ''">0</MinorVersion> | ||
<PatchVersion Condition="'$(PatchVersion)' == ''">0</PatchVersion> | ||
<PreReleaseSuffix Condition="'$(PreReleaseLabel)' != ''">-$(PreReleaseLabel)</PreReleaseSuffix> | ||
<BuildMetadataSuffix Condition="'$(BuildMetadata)' != ''">+$(BuildMetadata)</BuildMetadataSuffix> | ||
|
||
<AssemblyVersion>$(MajorVersion).$(MinorVersion).0.0</AssemblyVersion> | ||
<InformationalVersion>$(MajorVersion).$(MinorVersion).$(PatchVersion).0</InformationalVersion> | ||
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion> | ||
<FileVersion>$(MajorVersion).$(MinorVersion).$(PatchVersion)</FileVersion> | ||
<PackageVersion>$(FileVersion)$(PreReleaseSuffix)$(BuildMetadataSuffix)</PackageVersion> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TreatWarningsAsErrors>True</TreatWarningsAsErrors> | ||
<NoWarn>1701;1702</NoWarn> | ||
<PackageTags>CloudFlare, DNS, DDNS</PackageTags> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNet.WebApi.Client" /> | ||
<PackageReference Include="Microsoft.CSharp" /> | ||
<PackageReference Include="Newtonsoft.Json" /> | ||
<PackageReference Include="StyleCop.Analyzers"> | ||
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.CSharp" /> | ||
<PackageReference Include="Newtonsoft.Json" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> | ||
<_Parameter1>$(AssemblyName).Test</_Parameter1> | ||
</AssemblyAttribute> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="..\LICENSE" Pack="True" PackagePath="" /> | ||
<None Include="..\CloudFlare.Client\Resources\nuget_logo.png" Pack="True" PackagePath="" /> | ||
<None Include="..\LICENSE" Pack="true" PackagePath="" /> | ||
<None Include="..\CloudFlare.Client\Resources\nuget_logo.png" Pack="true" PackagePath="" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.