Shufflenet v2 pretrained #369
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: Python checks | |
on: | |
pull_request: | |
types: [review_requested] | |
branches: | |
- "*" | |
workflow_dispatch: | |
inputs: | |
placeholder: | |
description: "placeholder, no effect" | |
required: false | |
jobs: | |
check_license_and_format: | |
name: License and format | |
runs-on: ubuntu-18.04 | |
if: github.event.pull_request.draft == false && contains(github.event.pull_request.requested_reviewers.*.login, 'oneflow-ci-bot') | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
repository: ${{github.event.pull_request.head.repo.full_name}} | |
- name: Check Python format | |
id: py_check | |
run: | | |
python3 -m pip install black==19.10b0 | |
python3 ci/check/run_py_format.py --source_dir $PWD | |
- name: Run Python Format | |
id: py_fmt | |
if: ${{ failure() }} | |
run: | | |
python3 -m pip install black==19.10b0 | |
python3 ci/check/run_py_format.py --source_dir $PWD --fix | |
- name: Git push | |
id: git_push | |
if: ${{ failure() }} | |
run: | | |
git config --global user.email "ci-bot@oneflow.org" | |
git config --global user.name "oneflow-ci-bot" | |
git add -u | |
git commit -m "auto format by CI" | |
git push | |
- name: Please request CI again | |
if: ${{ failure() }} | |
run: | | |
exit 1 |