File tree Expand file tree Collapse file tree 2 files changed +24
-9
lines changed Expand file tree Collapse file tree 2 files changed +24
-9
lines changed Original file line number Diff line number Diff line change
1
+ name : codechecks
2
+
3
+ on : [ push, pull_request ]
4
+
5
+ jobs :
6
+ pycodestyle :
7
+ runs-on : ubuntu-latest
8
+ strategy :
9
+ matrix :
10
+ python-version : [3.9]
11
+ steps :
12
+ - uses : actions/checkout@v2
13
+ with :
14
+ submodules : true
15
+ - name : Set up Python ${{ matrix.python-version }}
16
+
17
+ with :
18
+ python-version : ${{ matrix.python-version }}
19
+ - name : Install dependencies
20
+ run : |
21
+ python -m pip install --upgrade pip
22
+ pip install -r requirements.txt
23
+ - name : Run update-pycodestyle
24
+ run : ./scripts/update-pycodestyle.sh
Original file line number Diff line number Diff line change 22
22
script : >
23
23
[ "v$(python -c 'from scripts.constants import CLIENT_VERSION; print(CLIENT_VERSION)')" == "${TRAVIS_TAG}" ] &&
24
24
[[ "${TRAVIS_TAG}" =~ ^v[0-9]+\.[0-9]+\.[0-9]+(([ab]|dev|rc)[0-9]+)?$ ]]
25
-
26
- - stage : test
27
- python : 3.9
28
- env : TOXENV=update-pycodestyle
29
25
- python : 3.9
30
26
env : TOXENV=coverage,codecov
31
27
- python : 3.7
52
48
tags : true
53
49
repo : kubernetes-client/python
54
50
distributions : sdist bdist_wheel
55
-
56
- - stage : test
57
- python : 3.9
58
- env : TOXENV=update-pycodestyle
59
- arch : ppc64le
60
51
- python : 3.7
61
52
env : TOXENV=docs
62
53
arch : ppc64le
You can’t perform that action at this time.
0 commit comments