Skip to content

Commit

Permalink
Create condatest.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mwong009 authored Dec 20, 2023
1 parent 78264ae commit 377c88b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/condatest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Conda Test
on:
workflow_dispatch:

jobs:
test:
name: (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["ubuntu-latest", "windows-latest"]
python-version: ["3.11"]
steps:
- uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
- name: Conda info
shell: bash -el {0}
run: conda info
- name: Conda list
shell: pwsh
run: conda list

0 comments on commit 377c88b

Please sign in to comment.