Spellchecking

pull/395/head
Jakub Chrzanowski 10 months ago
parent f631e302f6
commit 79f16d41d3
No known key found for this signature in database
GPG Key ID: C39095BFD769862E

@ -1,12 +1,12 @@
# GitHub Actions Workflow is created for testing and preparing the plugin release in the following steps: # GitHub Actions Workflow is created for testing and preparing the plugin release in the following steps:
# - validate Gradle Wrapper, # - Validate Gradle Wrapper.
# - run 'test' and 'verifyPlugin' tasks, # - Run 'test' and 'verifyPlugin' tasks.
# - run Qodana inspections, # - Run Qodana inspections.
# - run 'buildPlugin' task and prepare artifact for the further tests, # - Run the 'buildPlugin' task and prepare artifact for further tests.
# - run 'runPluginVerifier' task, # - Run the 'runPluginVerifier' task.
# - create a draft release. # - Create a draft release.
# #
# Workflow is triggered on push and pull_request events. # The workflow is triggered on push and pull_request events.
# #
# GitHub Actions reference: https://help.github.com/en/actions # GitHub Actions reference: https://help.github.com/en/actions
# #
@ -14,7 +14,7 @@
name: Build name: Build
on: on:
# Trigger the workflow on pushes to only the 'main' branch (this avoids duplicate checks being run e.g. for dependabot pull requests) # Trigger the workflow on pushes to only the 'main' branch (this avoids duplicate checks being run e.g., for dependabot pull requests)
push: push:
branches: [ main ] branches: [ main ]
# Trigger the workflow on any pull request # Trigger the workflow on any pull request
@ -40,7 +40,7 @@ jobs:
- name: Gradle Wrapper Validation - name: Gradle Wrapper Validation
uses: gradle/wrapper-validation-action@v1.1.0 uses: gradle/wrapper-validation-action@v1.1.0
# Setup Java environment for the next steps # Set up Java environment for the next steps
- name: Setup Java - name: Setup Java
uses: actions/setup-java@v3 uses: actions/setup-java@v3
with: with:
@ -104,7 +104,7 @@ jobs:
- name: Fetch Sources - name: Fetch Sources
uses: actions/checkout@v3 uses: actions/checkout@v3
# Setup Java environment for the next steps # Set up Java environment for the next steps
- name: Setup Java - name: Setup Java
uses: actions/setup-java@v3 uses: actions/setup-java@v3
with: with:
@ -129,7 +129,7 @@ jobs:
name: tests-result name: tests-result
path: ${{ github.workspace }}/build/reports/tests path: ${{ github.workspace }}/build/reports/tests
# Upload Kover report to CodeCov # Upload the Kover report to CodeCov
- name: Upload Code Coverage Report - name: Upload Code Coverage Report
uses: codecov/codecov-action@v3 uses: codecov/codecov-action@v3
with: with:
@ -157,7 +157,7 @@ jobs:
- name: Fetch Sources - name: Fetch Sources
uses: actions/checkout@v3 uses: actions/checkout@v3
# Setup Java environment for the next steps # Set up Java environment for the next steps
- name: Setup Java - name: Setup Java
uses: actions/setup-java@v3 uses: actions/setup-java@v3
with: with:
@ -188,7 +188,7 @@ jobs:
- name: Fetch Sources - name: Fetch Sources
uses: actions/checkout@v3 uses: actions/checkout@v3
# Setup Java environment for the next steps # Set up Java environment for the next steps
- name: Setup Java - name: Setup Java
uses: actions/setup-java@v3 uses: actions/setup-java@v3
with: with:
@ -235,7 +235,7 @@ jobs:
- name: Fetch Sources - name: Fetch Sources
uses: actions/checkout@v3 uses: actions/checkout@v3
# Setup Java environment for the next steps # Set up Java environment for the next steps
- name: Setup Java - name: Setup Java
uses: actions/setup-java@v3 uses: actions/setup-java@v3
with: with:

@ -24,7 +24,7 @@ jobs:
with: with:
ref: ${{ github.event.release.tag_name }} ref: ${{ github.event.release.tag_name }}
# Setup Java environment for the next steps # Set up Java environment for the next steps
- name: Setup Java - name: Setup Java
uses: actions/setup-java@v3 uses: actions/setup-java@v3
with: with:
@ -74,7 +74,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release upload ${{ github.event.release.tag_name }} ./build/distributions/* run: gh release upload ${{ github.event.release.tag_name }} ./build/distributions/*
# Create pull request # Create a pull request
- name: Create Pull Request - name: Create Pull Request
if: ${{ steps.properties.outputs.changelog != '' }} if: ${{ steps.properties.outputs.changelog != '' }}
env: env:

@ -35,7 +35,7 @@ jobs:
- name: Fetch Sources - name: Fetch Sources
uses: actions/checkout@v3 uses: actions/checkout@v3
# Setup Java environment for the next steps # Set up Java environment for the next steps
- name: Setup Java - name: Setup Java
uses: actions/setup-java@v3 uses: actions/setup-java@v3
with: with:

@ -2,7 +2,7 @@
name: Template Verify name: Template Verify
on: on:
# Trigger the workflow on pushes to only the 'main' branch (this avoids duplicate checks being run e.g. for dependabot pull requests) # Trigger the workflow on pushes to only the 'main' branch (this avoids duplicate checks being run e.g., for dependabot pull requests)
push: push:
branches: [main] branches: [main]
paths: ['**/gradle.properties'] paths: ['**/gradle.properties']

@ -114,7 +114,7 @@ The project-specific configuration file [`gradle.properties`][file:gradle.proper
The properties listed define the plugin itself or configure the [gradle-intellij-plugin][gh:gradle-intellij-plugin] check its documentation for more details. The properties listed define the plugin itself or configure the [gradle-intellij-plugin][gh:gradle-intellij-plugin] check its documentation for more details.
In addition, extra behaviours are configured through the [`gradle.properties`][file:gradle.properties] file, such as: In addition, extra behaviors are configured through the [`gradle.properties`][file:gradle.properties] file, such as:
| Property name | Value | Description | | Property name | Value | Description |
|--------------------------------------------------|---------|------------------------------------------------------------------------------------------------| |--------------------------------------------------|---------|------------------------------------------------------------------------------------------------|

Loading…
Cancel
Save