-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: you know what, forget the code inspection!
- Loading branch information
1 parent
fbbcbf3
commit 7ead14a
Showing
1 changed file
with
37 additions
and
36 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 |
---|---|---|
|
@@ -134,42 +134,43 @@ jobs: | |
files: ${{ github.workspace }}/build/reports/kover/report.xml | ||
|
||
# Run Qodana inspections and provide report | ||
inspectCode: | ||
name: Inspect code | ||
needs: [ build ] | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
checks: write | ||
pull-requests: write | ||
steps: | ||
|
||
# Free GitHub Actions Environment Disk Space | ||
- name: Maximize Build Space | ||
uses: jlumbroso/free-disk-space@main | ||
with: | ||
tool-cache: false | ||
large-packages: false | ||
|
||
# Check out the current repository | ||
- name: Fetch Sources | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit | ||
fetch-depth: 0 # a full history is required for pull request analysis | ||
|
||
# Set up Java environment for the next steps | ||
- name: Setup Java | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: zulu | ||
java-version: 17 | ||
|
||
# Run Qodana inspections | ||
- name: Qodana - Code Inspection | ||
uses: JetBrains/[email protected] | ||
with: | ||
cache-default-branch-only: true | ||
# THIS DOES NOT WORK AND IM NOT SMART ENOUGH TO FIGURE IT OUT | ||
# inspectCode: | ||
# name: Inspect code | ||
# needs: [ build ] | ||
# runs-on: ubuntu-latest | ||
# permissions: | ||
# contents: write | ||
# checks: write | ||
# pull-requests: write | ||
# steps: | ||
|
||
# # Free GitHub Actions Environment Disk Space | ||
# - name: Maximize Build Space | ||
# uses: jlumbroso/free-disk-space@main | ||
# with: | ||
# tool-cache: false | ||
# large-packages: false | ||
|
||
# # Check out the current repository | ||
# - name: Fetch Sources | ||
# uses: actions/checkout@v4 | ||
# with: | ||
# ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit | ||
# fetch-depth: 0 # a full history is required for pull request analysis | ||
|
||
# # Set up Java environment for the next steps | ||
# - name: Setup Java | ||
# uses: actions/setup-java@v4 | ||
# with: | ||
# distribution: zulu | ||
# java-version: 17 | ||
|
||
# # Run Qodana inspections | ||
# - name: Qodana - Code Inspection | ||
# uses: JetBrains/[email protected] | ||
# with: | ||
# cache-default-branch-only: true | ||
|
||
# Run plugin structure verification along with IntelliJ Plugin Verifier | ||
verify: | ||
|