Skip to content

Commit 4f54b50

Browse files
committed
BLD/CI: Print conda info
1 parent 7947252 commit 4f54b50

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,18 @@ jobs:
1111
python-version: ["3.10", "3.11", "3.12"]
1212
steps:
1313
- uses: actions/checkout@v3
14-
- name: Testing with Python ${{ matrix.python-version }}
14+
- name: Set up Python ${{ matrix.python-version }}
1515
uses: conda-incubator/setup-miniconda@v3
1616
with:
1717
auto-update-conda: true
1818
python-version: ${{ matrix.python-version }}
1919
activate-environment: numpy-financial-dev
2020
environment-file: environment.yml
21+
auto-activate-base: false
22+
- name: Conda info
23+
run: |
24+
conda info
25+
conda list
26+
- name: Test with pytest
2127
run: |
2228
spin test -- --doctest-modules

0 commit comments

Comments
 (0)