forked from sktime/sktime
-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (33 loc) · 964 Bytes
/
quant_dry_run.yml
File metadata and controls
40 lines (33 loc) · 964 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: quant-daily-dry-run
on:
schedule:
- cron: "30 5 * * *"
workflow_dispatch:
jobs:
dry-run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: install uv
uses: astral-sh/setup-uv@v6
- name: install dependencies
run: uv pip install .[dev,forecasting,quant]
- name: run daily dry-run via CLI
run: |
python -m sktime_quant.run \
--config examples/quant/config_dry_run.yaml \
--dry-run \
--print-summary
- name: upload dry-run artifacts
uses: actions/upload-artifact@v4
with:
name: quant-dry-run-artifacts
path: |
results/dry_run/reports/**
results/dry_run/orders/**
results/dry_run/governance/**
results/dry_run/state/**
if-no-files-found: warn