Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

Bump scikit-learn from 1.3.0 to 1.3.1 #110

Bump scikit-learn from 1.3.0 to 1.3.1

Bump scikit-learn from 1.3.0 to 1.3.1 #110

Workflow file for this run

name: CI testing
# see: https://help.github.com/en/actions/reference/events-that-trigger-workflows
on:
# Trigger the workflow on push or pull request, but only for the master branch
push:
branches: [main, "ci/*"]
pull_request:
branches: [main]
jobs:
pytest:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, macOS-11]
python-version: [3.8]
# Timeout: https://stackoverflow.com/a/59076067/4521646
timeout-minutes: 35
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install package & dependencies
run: |
pip --version
pip install -e . -U -q -r tests/requirements.txt -f https://download.pytorch.org/whl/cpu/torch_stable.html
pip list
shell: bash
- name: Tests
env:
PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION: python
run: coverage run --source hp_space_generator -m pytest hp_space_generator tests -v
- name: Statistics
if: success()
run: coverage report