Skip to content

lightgbm

lightgbm #1302

Workflow file for this run

name: lightgbm
on:
schedule:
- cron: '0 15 * * *'
pull_request:
paths:
- 'lightgbm/**'
- '.github/workflows/lightgbm.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@v4
- name: setup-python${{ matrix.python-version }}
uses: actions/setup-python@v5
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 git+https://github.com/optuna/optuna-integration.git
python -c 'import optuna_integration'
pip install -r lightgbm/requirements.txt
- name: Run LightGBM examples
run: |
python lightgbm/lightgbm_simple.py
python lightgbm/lightgbm_integration.py
python lightgbm/lightgbm_terminator.py
env:
OMP_NUM_THREADS: 1
- name: Run LightGBM Tuner examples
run: |
python lightgbm/lightgbm_tuner_simple.py
python lightgbm/lightgbm_tuner_cv.py
env:
OMP_NUM_THREADS: 1