Skip to content

Commit

Permalink
Fix codeql for java (#3284)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnoliver authored Oct 24, 2023
1 parent ce541cd commit 3f1833b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
if: matrix.language != 'java'
if: ${{ matrix.language != 'java' }}
uses: github/codeql-action/autobuild@v2

- name: Build Java
if: matrix.language == 'java'
if: ${{ matrix.language == 'java' }}
run: ./mvnw -B -DskipTests -Pcompile-jdk11 clean install --file pom.xml
working-directory: java

Expand Down

0 comments on commit 3f1833b

Please sign in to comment.