Skip to content

Commit 1a64a54

Browse files
committed
backwar ci/cd.
1 parent 2a3918f commit 1a64a54

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

.github/workflows/backward_compatibility.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,12 @@ jobs:
2121
fetch-depth: 0
2222
submodules: recursive
2323

24-
- name: Install uv && Set up Python $${{ matrix.python-versions }}
24+
- name: Install nomad
25+
if: "${{ matrix.python_version != '3.8'}}"
26+
run: |
27+
uv pip install nomad-lab[infrastructure]@git+https://gitlab.mpcdf.mpg.de/nomad-lab/nomad-FAIR.git
28+
29+
- name: Install uv && Set up Python ${{ matrix.python-versions }}
2530
uses: astral-sh/setup-uv@v5
2631
with:
2732
python-version: ${{ matrix.python-versions }}
@@ -30,10 +35,15 @@ jobs:
3035
- name: Install Python
3136
run: uv python install
3237

38+
- name: Install pip in the virtual environment
39+
run: |
40+
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
41+
uv run python get-pip.py
42+
3343
- name: Install dependencies
3444
run: |
35-
python -m pip install --upgrade pip
36-
python -m pip install coverage coveralls
45+
uv run python -m pip install --upgrade pip
46+
uv run python -m pip install coverage coveralls
3747
3848
- name: Install pynxtools-spm
3949
run: |

0 commit comments

Comments
 (0)