Use Windows PowerShell in scheduled workflow

This commit is contained in:
nornen0202 2026-04-06 08:56:23 +09:00
parent 6114f1145d
commit 52a5b1c792
1 changed files with 3 additions and 3 deletions

View File

@ -51,13 +51,13 @@ jobs:
python-version: "3.13"
- name: Install TradingAgents
shell: pwsh
shell: powershell
run: |
python -m pip install --upgrade pip
python -m pip install -e .
- name: Verify Codex login and model availability
shell: pwsh
shell: powershell
run: |
$workspaceDir = Join-Path $env:GITHUB_WORKSPACE ".codex-preflight"
$script = @(
@ -75,7 +75,7 @@ jobs:
$script | python -
- name: Run scheduled analysis and build site
shell: pwsh
shell: powershell
run: |
$configPath = "config/scheduled_analysis.toml"
if (-not (Test-Path $configPath)) {