We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f550c64 commit a9c1351Copy full SHA for a9c1351
1 file changed
.github/workflows/cross-platform-test.yml
@@ -30,6 +30,7 @@ jobs:
30
exe: PowerShell.MCP.Proxy
31
32
runs-on: ${{ matrix.os }}
33
+ timeout-minutes: 15
34
35
steps:
36
- uses: actions/checkout@v4
@@ -39,6 +40,14 @@ jobs:
39
40
with:
41
dotnet-version: '9.0.x'
42
43
+ - name: Install PowerShell 7.5 (Windows)
44
+ if: runner.os == 'Windows'
45
+ run: |
46
+ # GitHub Actions has PowerShell 7.4 which uses .NET 8
47
+ # PowerShell.MCP requires .NET 9, so we need PowerShell 7.5+
48
+ winget install --id Microsoft.PowerShell --source winget --accept-source-agreements --accept-package-agreements
49
+ shell: pwsh
50
+
51
- name: Install PowerShell (macOS)
52
if: runner.os == 'macOS'
53
run: |
0 commit comments