Added CodeQl tool to do static code analysis on pull request #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Static Code Analysis and Packaging | |
on: | |
push: | |
branches: [ "pipeline" ] | |
env: | |
ENV_VAR: test | |
jobs: | |
CodeQL: | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup JDK 8 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 8 | |
distribution: 'adopt' | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: Java | |
- name: Build with Maven | |
run: mvn clean install -DENV_VAR=${{ env.ENV_VAR }} | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 | |
Packaging: | |
needs: codeql | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup JDK 8 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 8 | |
distribution: 'adopt' | |
- name: Test with maven | |
run: mvn test | |
- name: Create WAR file | |
run: mvn -B package --file pom.xml | |
- name: Upload WAR file as artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Identity-API | |
path: target/identity-0.0.1.war |