ci(workflow): additional checks and tweaks #1
Workflow file for this run
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
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
# This workflow performs a static analysis of your Kotlin source code using | |
# ktlint. | |
# | |
# Scans are triggered: | |
# 1. On every push to default and protected branches | |
# 2. On every Pull Request targeting the default branch | |
# 3. Manually, on demand, via the "workflow_dispatch" event | |
name: Check Code Quality with ktlint | |
on: | |
# Triggers the workflow on push or pull request events but only for default and protected branches | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "scan" | |
scan: | |
name: ktlint Check | |
permissions: | |
# required for all workflows | |
security-events: write | |
# only required for workflows in private repositories | |
actions: read | |
contents: read | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Sets up JDK as a prerequisite to run Gradle | |
- name: Setup Java | |
uses: actions/[email protected] | |
with: | |
java-version: '17' | |
distribution: 'zulu' | |
# Sets up the reviewdog cli | |
- name: Setup reviewdog | |
uses: reviewdog/[email protected] | |
- name: Show reviewdog version | |
run: reviewdog -version | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- name: Checkout repository | |
uses: actions/[email protected] | |
# Sets up Gradle as a prerequisite to run ktlint | |
- name: Setup Gradle | |
uses: gradle/actions/[email protected] | |
with: | |
gradle-home-cache-cleanup: true | |
# Performs analysis using ktlint via Gradle and outputs a Sarif Report | |
- name: Run ktlint | |
run: ./gradlew lint --continue | |
# Process checkstyle Report file from ktlint with reviewdog cli | |
- name: Run reviewdog for library | |
if: success() || failure() | |
env: | |
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: reviewdog -f=checkstyle -diff="git diff FETCH_HEAD" -name="ktlint" -reporter=github-pr-check < library/build/reports/lint-results-debug.xml | |
# Process checkstyle Report file from ktlint with reviewdog cli | |
- name: Run reviewdog for app | |
if: success() || failure() | |
env: | |
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: reviewdog -f=checkstyle -diff="git diff FETCH_HEAD" -name="ktlint" -reporter=github-pr-check < app/build/reports/lint-results-debug.xml |