-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin' into zip-support
- Loading branch information
Showing
23 changed files
with
230 additions
and
234 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,57 @@ | ||
name: Validate | ||
on: | ||
push: | ||
branches: ["main"] | ||
pull_request: | ||
branches: [ "main" ] | ||
|
||
jobs: | ||
######################################################################### | ||
build-and-test: | ||
strategy: | ||
matrix: | ||
os: [windows-latest, ubuntu-latest, macos-13] | ||
runs-on: ${{matrix.os}} | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v4 | ||
with: | ||
# GitHelper unit test requires full clone, not the shallow default of GitHub Actions | ||
fetch-depth: 0 | ||
|
||
- name: Setup dotnet | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: | | ||
3.1.x | ||
6.0.x | ||
- name: Show dotnet info | ||
run: dotnet --info | ||
|
||
- name: Build and Test | ||
# NoFormat because there is a separate format check action below | ||
run: pwsh ./scripts/BuildAndTest.ps1 -NoFormat | ||
|
||
######################################################################### | ||
build-multitool-for-npm: | ||
runs-on: windows-latest | ||
steps: | ||
- name: Checkout out code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Build Multitool for npm | ||
run: ./scripts/BuildMultitoolForNpm.ps1 | ||
|
||
######################################################################### | ||
check-format: | ||
runs-on: windows-latest | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install format tool | ||
run: dotnet tool install -g dotnet-format | ||
|
||
- name: dotnet format | ||
run: dotnet-format --folder --check --exclude .\src\Sarif\Autogenerated\ |
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageVersion Include="Azure.Core" Version="1.41.0" /> | ||
<PackageVersion Include="Azure.Identity" Version="1.12.1" /> | ||
<PackageVersion Include="CommandLineParser" Version="2.9.1" /> | ||
<PackageVersion Include="coverlet.collector" Version="3.2.0" /> | ||
<PackageVersion Include="CsvHelper" Version="15.0.5" /> | ||
<PackageVersion Include="FluentAssertions" Version="6.12.0" /> | ||
<PackageVersion Include="Microsoft.Data.SqlClient" Version="2.1.7" /> | ||
<PackageVersion Include="Microsoft.Diagnostics.Tracing.EventRegister" Version="1.1.28" /> | ||
<PackageVersion Include="Microsoft.Diagnostics.Tracing.TraceEvent" Version="3.1.3" /> | ||
<PackageVersion Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="3.1.2" /> | ||
<PackageVersion Include="Microsoft.Extensions.Configuration.Json" Version="3.1.2" /> | ||
<PackageVersion Include="Microsoft.Extensions.FileSystemGlobbing" Version="3.1.9" /> | ||
<PackageVersion Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.2" /> | ||
<PackageVersion Include="Microsoft.Extensions.Logging.ApplicationInsights" Version="2.20.0" /> | ||
<PackageVersion Include="Microsoft.Extensions.Logging.Console" Version="3.1.2" /> | ||
<PackageVersion Include="Microsoft.Json.Pointer" Version="2.1.0" /> | ||
<PackageVersion Include="Microsoft.Json.Schema" Version="2.1.0" /> | ||
<PackageVersion Include="Microsoft.Json.Schema.Validation" Version="2.1.0" /> | ||
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.4.1" /> | ||
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="1.1.1" /> | ||
<PackageVersion Include="Microsoft.TeamFoundationServer.Client" Version="16.170.0" /> | ||
<PackageVersion Include="Moq" Version="4.18.4" /> | ||
<PackageVersion Include="Newtonsoft.Json" Version="13.0.1" /> | ||
<PackageVersion Include="System.Collections.Immutable" Version="5.0.0" /> | ||
<PackageVersion Include="System.Composition" Version="5.0.0" /> | ||
<PackageVersion Include="System.Data.SqlClient" Version="4.8.6" /> | ||
<PackageVersion Include="System.Diagnostics.Debug" Version="4.3.0" /> | ||
<PackageVersion Include="System.IO.Compression" Version="4.3.0" /> | ||
<PackageVersion Include="System.IO.FileSystem.Primitives" Version="4.3.0" /> | ||
<PackageVersion Include="System.Private.Uri" Version="4.3.2" /> | ||
<PackageVersion Include="System.Text.Encoding.CodePages" Version="4.3.0" /> | ||
<PackageVersion Include="System.Text.Encoding.Extensions" Version="4.3.0" /> | ||
<PackageVersion Include="System.Text.Encodings.Web" Version="5.0.1" /> | ||
<PackageVersion Include="System.Threading.Channels" Version="5.0.0" /> | ||
<PackageVersion Include="xunit" Version="2.4.2" /> | ||
<PackageVersion Include="xunit.runner.console" Version="2.4.2" /> | ||
<PackageVersion Include="xunit.runner.visualstudio" Version="2.4.5" /> | ||
<PackageVersion Include="YamlDotNet" Version="11.2.0" /> | ||
</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 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
Oops, something went wrong.