Skip to content

Commit a4e5d49

Browse files

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/codeql.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,10 @@ jobs:
4848
- name: Checkout repository
4949
uses: actions/checkout@v3
5050

51-
- name: Provision with micromamba
52-
uses: mamba-org/provision-with-micromamba@v16
51+
- name: Set up micromamba
52+
uses: mamba-org/setup-micromamba@v1
53+
with:
54+
environment-file: environment.yml
5355

5456
- name: Set interpreter
5557
run: |

.github/workflows/pytest-conda.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,10 @@ jobs:
2626
perl -i -spwe 's/^ *- python=\K.+$/$pyver/' -- \
2727
-pyver=${{ matrix.python-version }} environment.yml
2828
29-
- name: Provision with micromamba
30-
uses: mamba-org/provision-with-micromamba@v16
29+
- name: Set up micromamba
30+
uses: mamba-org/setup-micromamba@v1
31+
with:
32+
environment-file: environment.yml
3133

3234
- name: Run all tests
3335
run: pytest --doctest-modules

0 commit comments

Comments
 (0)