Lines Matching +full:cancel +full:- +full:in +full:- +full:progress
6 # "License"); you may not use this file except in compliance
9 # http://www.apache.org/licenses/LICENSE-2.0
11 # Unless required by applicable law or agreed to in writing,
18 name: pre-commit
26 group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
27 cancel-in-progress: true
30 pre-commit:
31 name: Run pre-commit
32 runs-on: ubuntu-24.04
34 - name: Check Out
36 - name: Install
38 python -m pip install --upgrade pip
39 pip install -r requirements-dev.txt
40 - name: Set PY
41 run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV
42 - uses: actions/cache@v5
44 path: ~/.cache/pre-commit
45 key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }}
46 - name: Run pre-commit
47 run: pre-commit run --color=always --all-files