Skip to content

Commit e8f3c98

Browse files
committed
workflow update
1 parent a9293bc commit e8f3c98

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/build-ci.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,25 @@ jobs:
4141
pip3 install vermin
4242
vermin -t=3.9 --backport asyncio --backport typing --no-tips .
4343
44+
execute-pylint:
45+
runs-on: ubuntu-latest
46+
strategy:
47+
max-parallel: 3
48+
matrix:
49+
pver:
50+
- 3.9
51+
- 3.10
52+
- 3.11
53+
- 3.12
54+
container: python:${{ matrix.pver }}
55+
steps:
56+
- name: Pylint
57+
shell: bash
58+
run: |
59+
pip install . pylint
60+
pylint --disable=all --enable=E,F --disable=E1121 --score=false cxone_api
61+
62+
4463
call-package-build:
4564
uses: ./.github/workflows/build.yml
4665
with:

0 commit comments

Comments
 (0)