Merge pull request #217 from nzw0301/unify-comment #941
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: Checks | |
on: | |
push: | |
branches: | |
- main | |
pull_request: {} | |
schedule: | |
- cron: '0 23 * * SUN-THU' | |
jobs: | |
checks: | |
if: (github.event_name == 'schedule' && github.repository == 'optuna/optuna-examples') || (github.event_name != 'schedule') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Install | |
run: | | |
python -m pip install -U pip | |
pip install --progress-bar off -U black hacking isort | |
- name: black | |
run: black . --check --diff | |
- name: flake8 | |
run: flake8 . | |
- name: isort | |
run: isort . --check --diff |