We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7947252 commit 4f54b50Copy full SHA for 4f54b50
.github/workflows/pythonpackage.yml
@@ -11,12 +11,18 @@ jobs:
11
python-version: ["3.10", "3.11", "3.12"]
12
steps:
13
- uses: actions/checkout@v3
14
- - name: Testing with Python ${{ matrix.python-version }}
+ - name: Set up Python ${{ matrix.python-version }}
15
uses: conda-incubator/setup-miniconda@v3
16
with:
17
auto-update-conda: true
18
python-version: ${{ matrix.python-version }}
19
activate-environment: numpy-financial-dev
20
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
27
run: |
28
spin test -- --doctest-modules
0 commit comments