We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ac2f2d commit bf6e503Copy full SHA for bf6e503
.github/workflows/python-mamba.yml
@@ -16,6 +16,7 @@ jobs:
16
matrix:
17
os: [ "ubuntu-latest"]
18
python-version: [ "3.10" , "3.11" ]
19
+ environment-file: ["environment-3.10.yml", "environment-3.11.yml"]# "environment-3.10-pinned.yml", "environment-3.10-astropy.yml"]
20
fail-fast: false
21
env:
22
PYTHONUNBUFFERED: 1
@@ -28,7 +29,7 @@ jobs:
28
29
- uses: mamba-org/setup-micromamba@v1
30
with:
31
environment-name: pystrometry-${{ runner.os }}-py${{ matrix.python-version }}
- environment-file: environment-{{ matrix.python-version }}.yml
32
+ environment-file: {{ matrix.environment-file }}
33
create-args: >-
34
python=${{ matrix.python-version }}
35
init-shell: none
0 commit comments