File tree 3 files changed +14
-13
lines changed
3 files changed +14
-13
lines changed Original file line number Diff line number Diff line change 18
18
- ' 3.9'
19
19
- ' 3.10'
20
20
- ' 3.11'
21
- - ' 3.12-dev '
21
+ - ' 3.12'
22
22
- ' 3.13-dev'
23
23
- ' pypy-3.10'
24
24
exclude :
34
34
start-method : ' spawn'
35
35
fail-fast : false
36
36
steps :
37
- - uses : actions/checkout@v3
37
+ - uses : actions/checkout@v4
38
38
- name : Set up Python ${{ matrix.python-version }}
39
- uses : actions/setup-python@v4
39
+ uses : actions/setup-python@v5
40
40
with :
41
41
python-version : ${{ matrix.python-version }}
42
42
- name : Install dependencies
Original file line number Diff line number Diff line change 6
6
black :
7
7
runs-on : ubuntu-latest
8
8
steps :
9
- - uses : actions/checkout@v3
9
+ - uses : actions/checkout@v4
10
10
- name : " Collect stragglers that Black misses"
11
11
id : stragglers
12
12
run : |
13
- echo "::set-output name= missed:: $(
13
+ echo "missed= $(
14
14
find bin -type f -not -name '*.py' -not -name '*.sh' | \
15
- xargs grep -l '#!/usr/bin/env python' | tr $'\n' ' ')"
15
+ xargs grep -l '#!/usr/bin/env python' | tr $'\n' ' ')" >> $GITHUB_OUTPUT
16
16
17
17
with :
18
18
src : . ${{ steps.stragglers.outputs.missed }}
@@ -25,13 +25,12 @@ jobs:
25
25
- ' 3.9'
26
26
- ' 3.10'
27
27
- ' 3.11'
28
- # pylint currently broken under 3.12
29
- # - '3.12-dev'
28
+ - ' 3.12'
30
29
fail-fast : false
31
30
steps :
32
- - uses : actions/checkout@v3
31
+ - uses : actions/checkout@v4
33
32
- name : Set up Python ${{ matrix.python-version }}
34
- uses : actions/setup-python@v4
33
+ uses : actions/setup-python@v5
35
34
with :
36
35
python-version : ${{ matrix.python-version }}
37
36
- name : Install python dependencies
Original file line number Diff line number Diff line change 9
9
pre-commit :
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - uses : actions/checkout@v3
13
- - uses : actions/setup-python@v4
14
- -
uses :
pre-commit/[email protected]
12
+ - uses : actions/checkout@v4
13
+ - uses : actions/setup-python@v5
14
+ with :
15
+ python-version : ' 3.x'
16
+ -
uses :
pre-commit/[email protected]
You can’t perform that action at this time.
0 commit comments