Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions .github/workflows/dotnet-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,25 @@ jobs:
name: "Run Coverage"
strategy:
fail-fast: false
matrix:
os: ["windows-2025"]
runs-on: ${{ matrix.os }}
runs-on: "windows-2025"
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
- name: Setup .NET
id: setup-dotnet
uses: actions/setup-dotnet@v6
with:
dotnet-version: 10.0.x
- name: Enforce .NET SDK Version
shell: bash
run: |
cat <<'EOF' > ./global.json
{
"sdk": {
"version": "${{ steps.setup-dotnet.outputs.dotnet-version }}",
"rollForward": "latestPatch"
}
}
EOF
- name: Tooling check
run: >
dotnet --version
Expand Down
16 changes: 14 additions & 2 deletions .github/workflows/make-coverage-html.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,25 @@ on: # yamllint disable-line rule:truthy
jobs:
make-coverage-html:
name: "Run make coverage/html and verify coverage HTML"
runs-on: windows-2025
runs-on: "windows-2025"
steps:
- uses: actions/checkout@v7
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
- name: Setup .NET
id: setup-dotnet
uses: actions/setup-dotnet@v6
with:
dotnet-version: 10.0.x
- name: Enforce .NET SDK Version
shell: bash
run: |
cat <<'EOF' > ./global.json
{
"sdk": {
"version": "${{ steps.setup-dotnet.outputs.dotnet-version }}",
"rollForward": "latestPatch"
}
}
EOF
- name: Verify tooling
run: |
dotnet --version
Expand Down
Loading