-
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.
Document (and move unrelated change elsewhere)
- Loading branch information
1 parent
8b545b6
commit 9c9ab0d
Showing
2 changed files
with
11 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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# Analyzes the code base using Github's default CodeQL query database. | ||
# Identified issues are registered with GitHub's code scanning dashboard. When | ||
# a pull request is analyzed, any offending lines are annotated. See | ||
# https://codeql.github.com for details. | ||
name: CodeQL analysis | ||
on: | ||
pull_request: | ||
|
@@ -19,6 +23,8 @@ jobs: | |
steps: | ||
- name: Check out code | ||
uses: actions/[email protected] | ||
with: | ||
persist-credentials: false | ||
- name: Set up JDK | ||
uses: actions/[email protected] | ||
with: | ||
|