Skip to content

Refactor project structure (#40) #157

Refactor project structure (#40)

Refactor project structure (#40) #157

Workflow file for this run

name: "CodeQL"
on:
push:
branches: [ "main" ]
paths:
- 'FunctionApp/**'
pull_request:
# The branches below must be a subset of the branches above
branches: [ "main" ]
paths:
- 'FunctionApp/**'
schedule:
- cron: '29 3 * * 2'
env:
JAVA_VERSION: '17'
PACKAGE_DIRECTORY: 'FunctionApp'
jobs:
analyze:
name: Analyze
runs-on: windows-latest
timeout-minutes: 30
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'java' ]
steps:
- name: Checkout repository
uses: actions/checkout@v3
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
# Autobuild doesn't work.
- name: Setup Java Sdk ${{ env.JAVA_VERSION }}
uses: actions/setup-java@v3
with:
distribution: 'microsoft'
java-version: ${{ env.JAVA_VERSION }}
cache: maven
- name: 'Restore Project Dependencies Using Mvn'
shell: pwsh
run: |
pushd './${{ env.PACKAGE_DIRECTORY }}'
mvn clean package
popd
- name: Build with Maven
run: mvn -B package --file ${{ env.PACKAGE_DIRECTORY }}/pom.xml
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"