Skip to content

Commit

Permalink
attempting to use conda-incubator
Browse files Browse the repository at this point in the history
  • Loading branch information
glemieux committed Mar 13, 2024
1 parent de9f863 commit ba0f162
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/setup-conda.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: miniconda setup

on:
workflow_dispatch:

jobs:
setup-conda:
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: ["3.8"]
defaults:
run:
shell: bash -el {0}
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: test
python-version: ${{ matrix.python-version }}
channels: conda-forge
channel-priority: flexible
show-channel-urls: true
- run: |
conda info
conda list
conda config --show-sources
conda config --show

0 comments on commit ba0f162

Please sign in to comment.