Skip to content

Update quality assurance workflow to include ktlint checks #58

Update quality assurance workflow to include ktlint checks

Update quality assurance workflow to include ktlint checks #58

name: Quality Assurance
on: [workflow_call, push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
java-version: "21"
distribution: "temurin"
- name: Setup Gradle
uses: ./.github/actions/setup-gradle
- name: Tests
run: gradle test
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
lint:
runs-on: ubuntu-latest
steps:
- name: Get number of commits in push
id: payload
if: github.event_name == 'push'
env:
COMMITS: ${{ toJson(github.event.commits) }}
run: |
echo "commit_length=$(echo $COMMITS | jq '. | length')" >> $GITHUB_OUTPUT
- name: Checking out ${{ steps.payload.outputs.commit_length || '1' }} commits
uses: actions/checkout@v4
with:
fetch-depth: ${{ steps.payload.outputs.commit_length || '1' }}
- name: Setup Ktlint
uses: ./.github/actions/setup-ktlint
- run: |
if [[ "${{ github.event_name }}" == "push" ]]; then
git diff --name-only --relative ${{ github.event.before }} ${{ github.event.after }} -- '*.kt' '*.kts'
elif [[ "${{ github.event_name }}" == "pull_request" ]]; then
args=$(gh pr diff --name-only ${{ github.event.number }} | grep -E "\.kts?$" | xargs printf -- '%s\n' | tr '\n' ' ')
ktlint --relative $args
fi
env:
GITHUB_TOKEN: ${{ github.token }}