Skip to content

Commit

Permalink
fix CI lanes
Browse files Browse the repository at this point in the history
  • Loading branch information
loriab committed Sep 17, 2024
1 parent 0642655 commit e04bee9
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,19 +118,19 @@ jobs:
runs-on: ${{ matrix.cfg.runs-on }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Create Environment
uses: conda-incubator/setup-miniconda@v2
uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: test
environment-file: devtools/conda-envs/${{ matrix.cfg.conda-env }}.yaml
python-version: ${{ matrix.cfg.python-version }}
auto-activate-base: false
show-channel-urls: true
miniforge-variant: Mambaforge
miniforge-variant: Miniforge
use-mamba: true
add-pip-as-python-dependency: true
# note: conda-forge chnl req'd for Mambaforge, but we'll spec in file, not here `channels: conda-forge,...`
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
pytest -rws -v ${{ matrix.cfg.pytest }} --cov=qcengine --color=yes --cov-report=xml qcengine/
- name: CodeCov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4

release_sphinx:
needs: [build]
Expand All @@ -207,16 +207,16 @@ jobs:
runs-on: ${{ matrix.cfg.runs-on }}

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

- name: Create Environment
uses: conda-incubator/setup-miniconda@v2
uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: test
environment-file: devtools/conda-envs/${{ matrix.cfg.conda-env }}.yaml
python-version: ${{ matrix.cfg.python-version }}
auto-activate-base: false
miniforge-variant: Mambaforge
miniforge-variant: Miniforge
use-mamba: true
add-pip-as-python-dependency: true
channels: conda-forge
Expand Down

0 comments on commit e04bee9

Please sign in to comment.