@@ -3,11 +3,11 @@ name: Build and Test Bandit
33on : [push, pull_request]
44
55jobs :
6- pylint :
6+ format :
77 runs-on : ubuntu-latest
88 strategy :
99 matrix :
10- python-version : [3.5 ]
10+ python-version : [3.6 ]
1111 steps :
1212 - uses : actions/checkout@v1
1313 - name : Set up Python ${{ matrix.python-version }}
@@ -21,13 +21,13 @@ jobs:
2121 pip install -r test-requirements.txt
2222 pip install tox
2323 - name : Run tox
24- run : tox -e pylint
24+ run : tox -e format
2525
2626 pep8 :
2727 runs-on : ubuntu-latest
2828 strategy :
2929 matrix :
30- python-version : [3.5 ]
30+ python-version : [3.6 ]
3131 steps :
3232 - uses : actions/checkout@v1
3333 - name : Set up Python ${{ matrix.python-version }}
@@ -43,11 +43,11 @@ jobs:
4343 - name : Run tox
4444 run : tox -e pep8
4545
46- py35 :
46+ py36 :
4747 runs-on : ubuntu-latest
4848 strategy :
4949 matrix :
50- python-version : [3.5 ]
50+ python-version : [3.6 ]
5151 steps :
5252 - uses : actions/checkout@v1
5353 - name : Set up Python ${{ matrix.python-version }}
@@ -61,13 +61,13 @@ jobs:
6161 pip install -r test-requirements.txt
6262 pip install tox
6363 - name : Run tox
64- run : tox -e py35
64+ run : tox -e py36
6565
66- py36 :
66+ py37 :
6767 runs-on : ubuntu-latest
6868 strategy :
6969 matrix :
70- python-version : [3.6 ]
70+ python-version : [3.7 ]
7171 steps :
7272 - uses : actions/checkout@v1
7373 - name : Set up Python ${{ matrix.python-version }}
@@ -81,13 +81,13 @@ jobs:
8181 pip install -r test-requirements.txt
8282 pip install tox
8383 - name : Run tox
84- run : tox -e py36
84+ run : tox -e py37
8585
86- py37 :
86+ py38 :
8787 runs-on : ubuntu-latest
8888 strategy :
8989 matrix :
90- python-version : [3.7 ]
90+ python-version : [3.8 ]
9191 steps :
9292 - uses : actions/checkout@v1
9393 - name : Set up Python ${{ matrix.python-version }}
@@ -101,13 +101,13 @@ jobs:
101101 pip install -r test-requirements.txt
102102 pip install tox
103103 - name : Run tox
104- run : tox -e py37
104+ run : tox -e py38
105105
106- py38 :
106+ py39 :
107107 runs-on : ubuntu-latest
108108 strategy :
109109 matrix :
110- python-version : [3.8 ]
110+ python-version : [3.9 ]
111111 steps :
112112 - uses : actions/checkout@v1
113113 - name : Set up Python ${{ matrix.python-version }}
@@ -121,13 +121,13 @@ jobs:
121121 pip install -r test-requirements.txt
122122 pip install tox
123123 - name : Run tox
124- run : tox -e py38
124+ run : tox -e py39
125125
126- py39 :
126+ py310 :
127127 runs-on : ubuntu-latest
128128 strategy :
129129 matrix :
130- python-version : [3.9 ]
130+ python-version : ['3.10' ]
131131 steps :
132132 - uses : actions/checkout@v1
133133 - name : Set up Python ${{ matrix.python-version }}
@@ -141,4 +141,4 @@ jobs:
141141 pip install -r test-requirements.txt
142142 pip install tox
143143 - name : Run tox
144- run : tox -e py39
144+ run : tox -e py310
0 commit comments