We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba1c3ea commit 45f48a4Copy full SHA for 45f48a4
.github/workflows/coverage.yml
@@ -21,6 +21,12 @@ jobs:
21
runs-on: ubuntu-latest
22
23
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
30
- uses: actions/checkout@v4
31
with:
32
submodules: true
@@ -32,7 +38,6 @@ jobs:
38
- uses: actions/setup-python@v5
33
39
34
40
python-version: "3.12"
35
- - uses: astral-sh/setup-uv@v4
36
- - run: uv pip install --system nox
41
+ - run: pip install --system nox
37
42
- run: nox -s cov
43
- uses: AndreMiras/coveralls-python-action@develop
0 commit comments