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 8
8
permissions :
9
9
contents : read
10
10
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
+
11
16
jobs :
12
17
lint :
13
18
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 1
1
---
2
-
3
2
name : Tests
4
3
5
4
on : [push, pull_request, workflow_dispatch]
6
5
7
6
env :
8
7
FORCE_COLOR : 1
9
8
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
+
10
14
jobs :
11
15
test :
12
16
runs-on : ${{ matrix.os }}
34
38
35
39
- name : Install dependencies
36
40
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
40
43
41
44
- name : Download more tests from friend projects
42
45
if : matrix.python-version == '3.13' && matrix.os == 'ubuntu-latest'
You can’t perform that action at this time.
0 commit comments