Skip to content

Commit 2adaa4f

Browse files
Update CI workflow to include Flame setup
1 parent ee74671 commit 2adaa4f

1 file changed

Lines changed: 16 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ jobs:
1212
uses: actions/checkout@v4
1313
with: { path: 'test' }
1414

15+
- name: Download Flame
16+
- uses: actions/checkout@v4
17+
- with: { repository: 'phi-grib/flame', path: 'backend/flame' }
18+
1519
- name: Download Namastox
1620
uses: actions/checkout@v4
1721
with: { repository: 'phi-grib/namastox', path: 'backend/namastox' }
@@ -29,14 +33,25 @@ jobs:
2933
- uses: conda-incubator/setup-miniconda@v3
3034

3135
# 3. Setuo Environments
32-
- name: Setup namastox
36+
- name: Setup first step namastox
3337
working-directory: ./backend/namastox
3438
run: |
3539
conda env create -f environment.yml
3640
eval "$(conda shell.bash hook)"
3741
conda activate namastox
42+
mkdir /data/ras
43+
44+
- name: Setup Flame
45+
working-directory: ./backend/flame
46+
run: pip install -e .
47+
48+
- name: Setup second step namastox
49+
working-directory: ./backend/namastox
50+
run: |
3851
pip install -e .
3952
namastox -c config -a silent
53+
flame -c config -a silent
54+
4055

4156
- name: Setup Frontend
4257
working-directory: ./frontend

0 commit comments

Comments
 (0)