@@ -12,25 +12,25 @@ jobs:
12
12
test :
13
13
runs-on : ubuntu-latest
14
14
strategy :
15
- matrix :
16
- python-version : [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, pypy-2.7, pypy-3.6]
17
15
fail-fast : false
16
+ matrix :
17
+ python-version : [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, pypy2.7, pypy3.6]
18
18
steps :
19
- - uses : actions/checkout@v2
19
+ - uses : actions/checkout@v3
20
20
- name : Set up Python ${{ matrix.python-version }}
21
- uses : actions/setup-python@v2
21
+ uses : actions/setup-python@v4
22
22
with :
23
23
python-version : ${{ matrix.python-version }}
24
24
- name : Install dependencies
25
25
run : python -m pip install --upgrade pip tox
26
26
- name : Run tox
27
- run : tox -e "$(echo py${{ matrix.python-version }} | sed -e 's/[.- ]//g;s/pypypy/pypy/')" --skip-missing-interpreters false
27
+ run : tox -e "$(echo py${{ matrix.python-version }} | sed -e 's/[.]//g;s/pypypy/pypy/')" --skip-missing-interpreters false
28
28
docs :
29
29
runs-on : ubuntu-latest
30
30
steps :
31
- - uses : actions/checkout@v2
31
+ - uses : actions/checkout@v3
32
32
- name : Set up Python 3.8
33
- uses : actions/setup-python@v2
33
+ uses : actions/setup-python@v4
34
34
with :
35
35
python-version : 3.8
36
36
- name : Install dependencies
40
40
flake8 :
41
41
runs-on : ubuntu-latest
42
42
steps :
43
- - uses : actions/checkout@v2
43
+ - uses : actions/checkout@v3
44
44
- name : Set up Python 3.8
45
- uses : actions/setup-python@v2
45
+ uses : actions/setup-python@v4
46
46
with :
47
47
python-version : 3.8
48
48
- name : Install dependencies
57
57
security-events : write
58
58
steps :
59
59
- name : Checkout repository
60
- uses : actions/checkout@v2
60
+ uses : actions/checkout@v3
61
61
- name : Initialize CodeQL
62
62
uses : github/codeql-action/init@v2
63
63
with :
0 commit comments