prepare for release: v2.0.0 #342
Workflow file for this run
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
# This workflow will install Python dependencies, run tests and lint with a single version of Python | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: tests | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
build: | |
name: Python ${{ matrix.python-version }} - numpy ${{ matrix.numpy-version }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.9", "3.10", "3.11", "3.12"] | |
numpy-version: [">=1.25,<2", ">=2"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
- name: Install test dependencies | |
run: | | |
poetry add "numpy${{ matrix.numpy-version }}" | |
poetry install --with dev,nbtools | |
- name: Test with pytest | |
run: | | |
poetry run pytest --cov-report xml --cov=bayes_opt/ | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 |