Corrected NelderMead and Powell zero order iterates names. #34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Python | |
on: | |
push: | |
branches: [dev, main] | |
tags: | |
- "*" | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
linux: | |
runs-on: ${{ matrix.platform.runner }} | |
strategy: | |
matrix: | |
platform: | |
- runner: ubuntu-latest | |
target: x86_64 | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
miniconda-version: "latest" | |
channels: defaults | |
auto-update-conda: true | |
- name: Test environment | |
run: | | |
conda env create --file py-tuutal/environment.yml | |
conda activate tuutal | |
maturin develop --release --manifest-path py-tuutal/Cargo.toml | |
pytest py-tuutal/tests/ |