File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change 3232 export MAVEN_OPTS="-Xmx2g -XX:ReservedCodeCacheSize=1g -Dorg.slf4j.simpleLogger.defaultLogLevel=WARN"
3333 export MAVEN_CLI_OPTS="--no-transfer-progress"
3434 ./build/mvn $MAVEN_CLI_OPTS -DskipTests -Pyarn -Pmesos -Pkubernetes -Phive -Phive-thriftserver -P${{ matrix.hadoop }} -Phadoop-cloud -Djava.version=${{ matrix.java }} package
35+
36+
37+ lint :
38+ runs-on : ubuntu-latest
39+ name : Linters
40+ steps :
41+ - uses : actions/checkout@master
42+ - uses : actions/setup-java@v1
43+ with :
44+ java-version : ' 11'
45+ - uses : actions/setup-python@v1
46+ with :
47+ python-version : ' 3.x'
48+ architecture : ' x64'
49+ - name : Scala
50+ run : ./dev/lint-scala
51+ - name : Java
52+ run : ./dev/lint-java
53+ - name : Python
54+ run : |
55+ pip install flake8 sphinx
56+ ./dev/lint-python
57+ - name : License
58+ run : ./dev/check-license
59+ - name : Dependencies
60+ run : ./dev/test-dependencies.sh
You can’t perform that action at this time.
0 commit comments