Merge pull request #4 from nornen0202/codex/codex-provider
Use Windows PowerShell in scheduled workflow
This commit is contained in:
commit
87fa5b6ce7
|
|
@ -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)) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue