name: Python CI # This workflow will be triggered when a PR modifies some python relevant files on: pull_request: paths: - "**.py" jobs: python_lint: name: python lint runs-on: ubuntu-latest strategy: matrix: python-version: ["3.7", "3.8", "3.9", "3.10"] steps: - name: Checkout uses: actions/checkout@master - name: Set up Python environment uses: actions/setup-python@master with: python-version: ${{ matrix.python-version }} - name: Lint with flake8 run: | pip install flake8 flake8 . --config=.flake8 --benchmark