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