Skip to content

Commit

Permalink
one more config fix for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Anton Kulaga committed Jun 4, 2024
1 parent 569cae6 commit d06874e
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/python-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:

strategy:
matrix:
python-version: [3.10, 3.11]
python-version: ["3.10", "3.11"]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Install Micromamba
run: |
Expand All @@ -26,7 +26,12 @@ jobs:
- name: Create environment
run: |
micromamba create --name test-env -f environment.yaml -y -c conda-forge
echo "micromamba activate test-env" >> $GITHUB_ENV
env:
MAMBA_ROOT_PREFIX: /usr/local/micromamba

- name: Set up Micromamba environment
run: echo "MICROMAMBA_ROOT_PREFIX=/usr/local/micromamba" >> $GITHUB_ENV
shell: bash

- name: Install dependencies
run: micromamba run -n test-env micromamba install -y -f environment.yaml -c conda-forge
Expand Down

0 comments on commit d06874e

Please sign in to comment.