Search for lib in java.library.path
instead of hardcoded path
#199
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: "CodeQL" | |
on: | |
push: | |
branches: [develop, main] | |
pull_request: | |
branches: [develop] | |
schedule: | |
- cron: '0 8 * * 0' | |
jobs: | |
analyse: | |
name: Analyse | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')" | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: 21 | |
distribution: 'zulu' | |
cache: 'maven' | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: java | |
- name: Build | |
run: mvn -B compile | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 |