-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
While there, tweak some indentation in another GitHub Actions workflow file.
- Loading branch information
1 parent
ae22e0e
commit 9005796
Showing
2 changed files
with
46 additions
and
5 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,11 +29,11 @@ jobs: | |
runs-on: ${{ matrix.os }} | ||
continue-on-error: ${{ matrix.experimental }} | ||
steps: | ||
# We run the build twice for each supported JDK: once against the | ||
# original Error Prone release, using only Error Prone checks available | ||
# on Maven Central, and once against the Picnic Error Prone fork, | ||
# additionally enabling all checks defined in this project and any | ||
# Error Prone checks available only from other artifact repositories. | ||
# We run the build twice for each supported JDK: once against the | ||
# original Error Prone release, using only Error Prone checks available | ||
# on Maven Central, and once against the Picnic Error Prone fork, | ||
# additionally enabling all checks defined in this project and any Error | ||
# Prone checks available only from other artifact repositories. | ||
- name: Check out code | ||
uses: actions/[email protected] | ||
- name: Set up JDK | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: CodeQL | ||
on: | ||
pull_request: | ||
branches: [ master ] | ||
push: | ||
branches: [ master ] | ||
schedule: | ||
- cron: '0 4 * * 1' | ||
permissions: | ||
actions: read | ||
contents: read | ||
security-events: write | ||
jobs: | ||
analyze: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
language: [ java, ruby ] | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Check out code | ||
uses: actions/[email protected] | ||
- name: Initialize CodeQL | ||
uses: github/codeql-action/[email protected] | ||
with: | ||
languages: ${{ matrix.language }} | ||
# XXX: Check whether we should do this instead. | ||
#- name: Set up JDK | ||
# uses: actions/[email protected] | ||
# with: | ||
# java-version: 17.0.6 | ||
# distribution: temurin | ||
# cache: maven | ||
#- name: Perform minimal build | ||
# run: mvn -T1C clean install -DskipTests -Dverification.skip | ||
- name: Perform autobuild | ||
uses: github/codeql-action/[email protected] | ||
- name: Perform CodeQL analysis | ||
uses: github/codeql-action/[email protected] | ||
with: | ||
category: "/language:${{matrix.language}}" |