Skip to content

Commit 45f48a4

Browse files
authored
Update coverage.yml
1 parent ba1c3ea commit 45f48a4

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/coverage.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ jobs:
2121
runs-on: ubuntu-latest
2222

2323
steps:
24+
- name: Install conda from miniforge
25+
run: |
26+
wget -O Miniforge3.sh "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-$(uname)-$(uname -m).sh"
27+
bash Miniforge3.sh -b -p "${HOME}/conda"
28+
source "${HOME}/conda/etc/profile.d/conda.sh"
29+
conda activate
2430
- uses: actions/checkout@v4
2531
with:
2632
submodules: true
@@ -32,7 +38,6 @@ jobs:
3238
- uses: actions/setup-python@v5
3339
with:
3440
python-version: "3.12"
35-
- uses: astral-sh/setup-uv@v4
36-
- run: uv pip install --system nox
41+
- run: pip install --system nox
3742
- run: nox -s cov
3843
- uses: AndreMiras/coveralls-python-action@develop

0 commit comments

Comments
 (0)