Skip to content

debug

debug #2

Workflow file for this run

name: format-check
on:
pull_request:
branches:
- main
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
permissions: read-all
jobs:
format-check:
# Don't run on forked repos
# if: github.repository_owner == 'intel'
name: flake8-check
runs-on: ubuntu-latest
steps:
- name: Checkout intel_extension_for_pytorch
uses: actions/checkout@v2
- name: Checkout submodules
run: |
git submodule update --init --recursive
- name: flake8-check
run: |
pip install -r scripts/requirements-flake8.txt
python scripts/flake8-check.py