Disable scheduled runs for PyTorch and visualization temporarily #1665
Workflow file for this run
This file contains hidden or 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: visualization | |
| on: | |
| # TODO(c-bata): Uncomment the following lines after fixing the examples. | |
| # See https://github.com/optuna/optuna-examples/issues/336 for details. | |
| # schedule: | |
| # - cron: '0 15 * * *' | |
| pull_request: | |
| paths: | |
| - 'visualization/**' | |
| - '.github/workflows/visualization.yml' | |
| workflow_dispatch: | |
| 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.9', '3.10', '3.11', '3.12'] | |
| 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 -r visualization/requirements.txt | |
| - name: Run examples | |
| run: | | |
| python visualization/plot_pareto_front.py | |
| python visualization/plot_study.py | |
| env: | |
| OMP_NUM_THREADS: 1 |