update_cells response values in input order
          
            #1606
        
      Workflow file for this run
  
    
      This file contains hidden or 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: lint_python | |
| on: | |
| push: | |
| branches: | |
| - "**" # run all branches | |
| tags-ignore: | |
| - "*" # ignore all tags, release.yaml will trigger the CI | |
| pull_request: # run on all pull requests | |
| concurrency: | |
| cancel-in-progress: true | |
| group: group-${{ github.ref_name }} | |
| jobs: | |
| lint_python: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python: ["3.8", "3.9", "3.10", "3.11", "3.x"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python }} | |
| - run: pip install -U pip | |
| - run: pip install -U bandit pyupgrade pip-audit tox setuptools | |
| - run: bandit --recursive --skip B105,B110,B311,B605,B607 --exclude ./.tox . | |
| - run: tox -e lint | |
| - run: tox -e py | |
| - run: shopt -s globstar && pyupgrade --py3-only **/*.py # --py36-plus | |
| - run: pip-audit --ignore-vuln PYSEC-2023-228 --ignore-vuln PYSEC-2022-43012 --ignore-vuln GHSA-5rjg-fvgr-3xxf --ignore-vuln GHSA-48p4-8xcf-vxj5 --ignore-vuln GHSA-pq67-6m6q-mj2v # pip:PYSEC-2023-228 setuptools:PYSEC-2022-43012 setuptools:GHSA-5rjg-fvgr-3xxf urllib:GHSA-48p4-8xcf-vxj5 urllib:GHSA-pq67-6m6q-mj2v | |
| - run: tox -e build | |
| - run: tox -e doc |