hello #57
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
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 --color never ${{ github.event.before }} ${{ github.event.after }} -- '*.kt' '*.kts' | |
elif [[ "${{ github.event_name }}" == "pull_request" ]]; then | |
ktlint --relative $(gh pr diff --name-only --color never ${{ github.event.number }} | grep -E "\.kts?$" | xargs printf -- '%s\n' | tr '\n' ' ') | |
fi | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |