-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (34 loc) · 1.01 KB
/
process_props.yml
File metadata and controls
42 lines (34 loc) · 1.01 KB
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
41
42
name: Process Props
on:
workflow_dispatch: # Manual runs only; pipeline runs via create_dashboard.yml
jobs:
run-script:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install local package
run: |
python -m pip install --upgrade pip
pip install -e .
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run process_props.py
run: |
python scripts/process_props.py
- name: Upload results (if any)
if: success()
uses: actions/upload-artifact@v4
with:
name: process-props-output
path: |
output/**
reports/**
logs/**
if-no-files-found: ignore