We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b317015 commit 35f2ed4Copy full SHA for 35f2ed4
.github/workflows/main.yaml
@@ -11,6 +11,9 @@ jobs:
11
verify-and-lint:
12
runs-on: ubuntu-latest
13
name: Verify codegen/vendor/licenses, do lint
14
+ strategy:
15
+ matrix:
16
+ python-version: [ "3.6" ]
17
env:
18
GOPATH: ${{ github.workspace }}
19
@@ -50,6 +53,16 @@ jobs:
50
53
run: pycodestyle lib
51
54
working-directory: ${{ env.CODE_DIR }}
52
55
56
+ - name: Set python version
57
+ uses: actions/setup-python@v3
58
+ with:
59
+ python-version: ${{ matrix.python-version }}
60
+ - name: Run python lint test
61
+ run: |
62
+ python -m pip install pylint
63
+ pylint lib
64
+ working-directory: ${{ env.CODE_DIR }}
65
+
66
build:
67
68
name: build gm and lc
0 commit comments