Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/test-dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
name: 'Windows'
# While the repo is private, prefer self-hosted runners to avoid GitHub-hosted spend limits.
# When public, use GitHub-hosted runners by default.
runs-on: ${{ fromJSON(github.event.repository.private && '["self-hosted","windows"]' || '["windows-latest"]') }}
runs-on: ${{ fromJSON(github.event.repository.private && '["self-hosted","Windows"]' || '["windows-latest"]') }}
timeout-minutes: 20
steps:
- name: Checkout code
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
name: 'macOS'
# While the repo is private, prefer self-hosted runners to avoid GitHub-hosted spend limits.
# When public, use GitHub-hosted runners by default.
runs-on: ${{ fromJSON(github.event.repository.private && '["self-hosted","macos"]' || '["macos-latest"]') }}
runs-on: ${{ fromJSON(github.event.repository.private && '["self-hosted","macOS"]' || '["macos-latest"]') }}
timeout-minutes: 20
steps:
- name: Checkout code
Expand Down
Loading