-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
switch from dorny/test-reporter to test-summary/action (#211)
* switch from dorny/test-reporter to test-summary/action - test results will be included in the job summary - simplifies actions - requires use of junit output test-summary/action#1 - added publish and upload artifact steps - committing with failing test to ensure it works when tests fail * try to fix test results output * workflows - revert to run on main push * codeql - update checkout action * nuspec - include some github workflows * Excluded unneeded template files from project. * nuspec - include all github settings except the ones that are specific to the template * Update CleanArchitecture version to 0.7.0 The version number in CleanArchitecture.nuspec has been downgraded from 0.7.3 to 0.7.0. This can be due to dependency issues or rollback requirements. --------- Co-authored-by: Daniel Mackay [SSW] <[email protected]>
- Loading branch information
1 parent
593ab55
commit 08c35b4
Showing
9 changed files
with
74 additions
and
85 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
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,28 +1,32 @@ | ||
name: Publish Log4brains | ||
|
||
on: | ||
workflow_run: | ||
workflows: ['.NET'] # runs after .NET workflow | ||
types: | ||
- completed | ||
branches: | ||
- 'main' | ||
push: | ||
branches: [ "main" ] | ||
|
||
jobs: | ||
build-and-publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2.3.4 | ||
uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false # required by JamesIves/github-pages-deploy-action | ||
fetch-depth: 0 # required by Log4brains to work correctly (needs the whole Git history) | ||
sparse-checkout: | | ||
docs | ||
- name: Install Node | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: "14" | ||
|
||
- name: Install and Build Log4brains | ||
run: | | ||
npm install -g log4brains | ||
log4brains build --basePath /${GITHUB_REPOSITORY#*/} | ||
- name: Deploy | ||
uses: JamesIves/[email protected] | ||
with: | ||
|
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
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,23 +1,22 @@ | ||
<Project> | ||
|
||
<PropertyGroup> | ||
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageVersion Include="FluentAssertions" Version="6.12.0" /> | ||
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.9.0-preview-23503-02" /> | ||
<PackageVersion Include="xunit" Version="2.6.2" /> | ||
<PackageVersion Include="xunit.runner.visualstudio" Version="2.5.4" /> | ||
<PackageVersion Include="coverlet.collector" Version="6.0.0" /> | ||
<PackageVersion Include="NetArchTest.Rules" Version="1.3.2" /> | ||
<PackageVersion Include="Bogus" Version="34.0.2" /> | ||
<PackageVersion Include="NSubstitute" Version="5.1.0" /> | ||
<PackageVersion Include="Respawn" Version="6.1.0" /> | ||
<PackageVersion Include="Testcontainers" Version="3.6.0" /> | ||
<PackageVersion Include="Testcontainers.SqlEdge" Version="3.6.0" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.0" /> | ||
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" /> | ||
<PackageVersion Include="Meziantou.Extensions.Logging.Xunit" Version="1.0.7" /> | ||
</ItemGroup> | ||
</Project> | ||
<PropertyGroup> | ||
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageVersion Include="FluentAssertions" Version="6.12.0" /> | ||
<PackageVersion Include="JunitXml.TestLogger" Version="3.0.134" /> | ||
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.9.0-preview-23503-02" /> | ||
<PackageVersion Include="xunit" Version="2.6.2" /> | ||
<PackageVersion Include="xunit.runner.visualstudio" Version="2.5.4" /> | ||
<PackageVersion Include="coverlet.collector" Version="6.0.0" /> | ||
<PackageVersion Include="NetArchTest.Rules" Version="1.3.2" /> | ||
<PackageVersion Include="Bogus" Version="34.0.2" /> | ||
<PackageVersion Include="NSubstitute" Version="5.1.0" /> | ||
<PackageVersion Include="Respawn" Version="6.1.0" /> | ||
<PackageVersion Include="Testcontainers" Version="3.6.0" /> | ||
<PackageVersion Include="Testcontainers.SqlEdge" Version="3.6.0" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.0" /> | ||
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" /> | ||
<PackageVersion Include="Meziantou.Extensions.Logging.Xunit" Version="1.0.7" /> | ||
</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