Skip to content

Commit 00a2184

Browse files
committed
Add workflow job step to setup Miniforge
1 parent 6423991 commit 00a2184

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.github/workflows/tests.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,22 @@ jobs:
4545
with:
4646
python-version: ${{ matrix.python-version }}
4747
cache: pip
48+
49+
- name: Set up Miniforge
50+
uses: conda-incubator/setup-miniconda@v3
51+
with:
52+
miniforge-version: latest
53+
54+
- name: Setup tmate session
55+
uses: mxschmitt/action-tmate@v3
56+
with:
57+
limit-access-to-actor: true
4858

4959
- name: Install dependencies
5060
run: |
5161
python -m pip install --upgrade pip
5262
pip install .[tests]
5363
54-
- name: Setup tmate session
55-
uses: mxschmitt/action-tmate@v3
56-
with:
57-
limit-access-to-actor: true
58-
5964
- name: Run tests
6065
if: github.event_name != 'pull_request'
6166
run: |

0 commit comments

Comments
 (0)