base #883
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: base | |
on: | |
schedule: | |
- cron: '0 15 * * *' | |
pull_request: | |
paths: | |
- './**.py' | |
- 'requirements.txt' | |
- '.github/workflows/base.yml' | |
jobs: | |
examples: | |
if: (github.event_name == 'schedule' && github.repository == 'optuna/optuna-examples') || (github.event_name != 'schedule') | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: setup-python${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install (Python) | |
run: | | |
python -m pip install --upgrade pip | |
pip install --progress-bar off -U setuptools | |
pip install git+https://github.com/optuna/optuna.git | |
python -c 'import optuna' | |
pip install -r requirements.txt | |
- name: Run examples | |
run: | | |
python max_trials_callback.py | |
python enqueue_trial.py | |
python quadratic_simple.py | |
python simple_pruning.py | |
python -m py_compile rapids_simple.py # due to difficulty importing, compile only | |
jupyter nbconvert --to notebook --execute quickstart.ipynb | |
env: | |
OMP_NUM_THREADS: 1 |