Split ci #8
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
name: keras | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'optuna_integration/keras/**' | |
- '.github/workflows/keras.yml' | |
- 'tests/keras/**' | |
pull_request: | |
paths: | |
- 'optuna_integration/keras/**' | |
- '.github/workflows/keras.yml' | |
- 'tests/keras/**' | |
schedule: | |
- cron: '0 23 * * SUN-THU' | |
workflow_dispatch: | |
jobs: | |
tests: | |
if: (github.event_name == 'schedule' && github.repository == 'optuna/optuna-integration') || (github.event_name != 'schedule') | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.8', '3.9', '3.10', '3.11'] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install | |
run: | | |
python -m pip install --upgrade pip | |
# Install optuna from optuna master | |
pip install git+https://github.com/optuna/optuna@master | |
pip install --progress-bar off .[test] | |
pip install --progress-bar off -r optuna_integration/keras/requirements.txt | |
- name: Tests | |
run: | | |
pytest tests/keras |