Skip to content

Commit 8f2549c

Browse files
committed
Update GitHub workflows to align with recent Databank repository changes
1 parent eebc925 commit 8f2549c

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

.github/workflows/ProcessInfoFile.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ jobs:
4141
TQDM_DISABLE: True
4242
working-directory: Databank
4343
run: |
44-
pip install -e . -r ./Scripts/DatabankLib/requirements.txt
45-
python Scripts/WorkflowScripts/ProcessInfoFile.py \
46-
--info_file_path ../BilayerData/UserData/info.yml
44+
pip install .
45+
python developer/ProcessInfoFile.py \
46+
--info_file_path ../BilayerData/UserData/info.yml
4747
4848
- uses: actions/create-github-app-token@v2
4949
id: app-token

.github/workflows/RunGlobalAnalysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ jobs:
4444
TQDM_DISABLE: "True"
4545
working-directory: "Databank"
4646
run: |
47-
pip install -e . -r ./Scripts/DatabankLib/requirements.txt
48-
python Scripts/WorkflowScripts/RunAnalysis.py
47+
pip install .
48+
python developer/RunAnalysis.py
4949
5050
- name: Create Pull Request with simulation updates
5151
uses: peter-evans/create-pull-request@v7

.github/workflows/ValidateInfoFile.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Checkout Databank
2929
uses: actions/checkout@v4
3030
with:
31-
repository: NMRlipids/Databank
31+
repository: NMRLipids/Databank
3232
ref: main
3333
path: Databank
3434

@@ -37,6 +37,6 @@ jobs:
3737
TQDM_DISABLE: True
3838
working-directory: Databank
3939
run: |
40-
pip install -e . -r ./Scripts/DatabankLib/requirements.txt
41-
python Scripts/WorkflowScripts/ProcessInfoFile.py \
40+
pip install .
41+
python developer/ProcessInfoFile.py \
4242
--info_file_path ../BilayerData/UserData/info.yml --dry-run

.github/workflows/ValidateMolecules.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,9 @@ jobs:
3333
- name: Install Databank dependencies
3434
working-directory: "Databank"
3535
run: |
36-
pip install -e . -r ./Scripts/DatabankLib/requirements.txt
36+
pip install .
3737
3838
- name: Validate
3939
working-directory: "Databank"
4040
run: |
41-
python Scripts/WorkflowScripts/ValidateData.py
42-
41+
python developer/ValidateData.py

0 commit comments

Comments
 (0)