-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
0 additions
and
26 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 |
---|---|---|
|
@@ -42,11 +42,6 @@ on: | |
required: false | ||
default: true | ||
description: "Set to 'true' to run the SwiftPM public API breakage check. Defaults to 'true'." | ||
with_gh_codeql: | ||
type: boolean | ||
required: false | ||
default: true | ||
description: "Set to 'true' to run CodeQL checks. Defaults to 'true'." | ||
with_deps_submission: | ||
type: boolean | ||
required: false | ||
|
@@ -117,27 +112,6 @@ jobs: | |
git config --global --add safe.directory "${GITHUB_WORKSPACE}" | ||
swift package ${PACKAGE_ROOT} diagnose-api-breaking-changes origin/main ${EXTRA_FLAGS} | ||
# gh-codeql: | ||
# if: ${{ inputs.with_gh_codeql && !(github.event.pull_request.draft || false) }} | ||
# runs-on: ubuntu-latest | ||
# permissions: { actions: write, contents: read, security-events: write } | ||
# timeout-minutes: 30 | ||
# steps: | ||
# - name: Install latest Swift toolchain | ||
# uses: vapor/[email protected] | ||
# with: { toolchain: latest } | ||
# - name: Check out code | ||
# uses: actions/checkout@v4 | ||
# - name: Fix Git configuration | ||
# run: 'git config --global --add safe.directory "${GITHUB_WORKSPACE}"' | ||
# - name: Initialize CodeQL | ||
# uses: github/codeql-action/init@v3 | ||
# with: { languages: swift } | ||
# - name: Perform build | ||
# run: 'swift build ${PACKAGE_ROOT} ${EXTRA_FLAGS}' | ||
# - name: Run CodeQL analyze | ||
# uses: github/codeql-action/analyze@v3 | ||
|
||
linux-unit: | ||
if: ${{ !(github.event.pull_request.draft || false) }} | ||
strategy: | ||
|