File tree Expand file tree Collapse file tree 2 files changed +12
-4
lines changed
Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 88permissions :
99 contents : read
1010
11+ concurrency :
12+ group : ${{ github.workflow }}-${{ github.ref }}
13+ # cancel all except push to main branch to have always full results
14+ cancel-in-progress : ${{ !(github.event_name == 'push' && github.ref == 'refs/heads/main') }}
15+
1116jobs :
1217 lint :
1318 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 11---
2-
32name : Tests
43
54on : [push, pull_request, workflow_dispatch]
65
76env :
87 FORCE_COLOR : 1
98
9+ concurrency :
10+ group : ${{ github.workflow }}-${{ github.ref }}
11+ # cancel all except push to main branch to have always full results
12+ cancel-in-progress : ${{ !(github.event_name == 'push' && github.ref == 'refs/heads/main') }}
13+
1014jobs :
1115 test :
1216 runs-on : ${{ matrix.os }}
3438
3539 - name : Install dependencies
3640 run : |
37- python -m pip install -U pip
38- python -m pip install -U wheel
39- python -m pip install -U tox
41+ pip install -U pip
42+ pip install -U tox
4043
4144 - name : Download more tests from friend projects
4245 if : matrix.python-version == '3.13' && matrix.os == 'ubuntu-latest'
You can’t perform that action at this time.
0 commit comments