File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111
1212jobs :
1313 build :
14+ name : build
1415 runs-on : ubuntu-latest
1516
1617 steps :
2324 - name : Checkout security
2425 uses : actions/checkout@v2
2526
27+ - name : Initialize CodeQL
28+ uses : github/codeql-action/init@v1
29+ with :
30+ languages : java
31+
2632 - name : Cache Maven packages
2733 uses : actions/cache@v1
2834 with :
3339 - name : Checkstyle
3440 run : mvn -B checkstyle:checkstyle
3541
42+ - name : Package
43+ run : mvn -B clean package -Padvanced -DskipTests
44+
45+ - name : Perform CodeQL Analysis
46+ uses : github/codeql-action/analyze@v1
47+
3648 - name : Test
3749 run : OPENDISTRO_SECURITY_TEST_OPENSSL_OPT=true mvn -B test
3850
4153 with :
4254 token : ${{ secrets.CODECOV_TOKEN }}
4355
44- - name : Package
45- run : mvn -B clean package -Padvanced -DskipTests
46-
4756 - name : Upload Artifacts
4857 uses : actions/upload-artifact@v1
4958 with :
You can’t perform that action at this time.
0 commit comments