Skip to content

Commit

Permalink
Merge branch 'main' into topic/add-property-statistics
Browse files Browse the repository at this point in the history
  • Loading branch information
vbreuss authored Mar 15, 2024
2 parents d038671 + 1c75cf3 commit 1154d78
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ jobs:
name: Code coverage (Windows)
path: Coverage/Windows
- name: Generate coverage report
uses: danielpalme/[email protected].2
uses: danielpalme/[email protected].3
with:
reports: "Coverage/**/coverage.cobertura.xml"
targetdir: "coverage-report"
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,13 @@ jobs:
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v2
- name: Setup VSTest
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,13 @@ jobs:
run: |
version="${GITHUB_REF#refs/heads/release/}"
git tag "${version}"
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v2
- name: Setup VSTest
Expand Down
1 change: 1 addition & 0 deletions Testably.Abstractions.sln
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "_", "_", "{94F99274-3518-45
Directory.Build.props = Directory.Build.props
Directory.Packages.props = Directory.Packages.props
Feature.Flags.props = Feature.Flags.props
global.json = global.json
LICENSE = LICENSE
nuget.config = nuget.config
README.md = README.md
Expand Down
6 changes: 6 additions & 0 deletions global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"sdk": {
"version": "8.0.203",
"rollForward": "latestMinor"
}
}
3 changes: 2 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@
"groupName": [ "Testably.Abstractions packages" ]
}
],
"ignoreDeps": [ "actions/download-artifact", "actions/upload-artifact" ]
"ignoreDeps": [ "actions/download-artifact", "actions/upload-artifact" ],
"schedule": ["before 4am on monday"]
}

0 comments on commit 1154d78

Please sign in to comment.