Skip to content

force detekt to finish #295

force detekt to finish

force detekt to finish #295

Workflow file for this run

name: Detekt
# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on:
pull_request:
branches:
- "*"
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
Detekt:
# The type of runner that the job will run on
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
# Configure Gradle for optimal use in GitHub Actions, including caching of downloaded dependencies.
# See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: detekt execution
run: ./gradlew detekt
- name: Report success to GitHub
if: success()

Check failure on line 32 in .github/workflows/detekt.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/detekt.yml

Invalid workflow file

You have an error in your yaml syntax on line 32
uses: actions/github-script@v6
with:
script: |
github.repos.createCommitStatus({
owner: context.repo.owner,
repo: context.repo.repo,
sha: context.sha,
state: "success",
context: "detekt",
description: "Detekt check completed"
})