Skip to content

chore: Add workflow for docs verification #WPB-19997 #322

chore: Add workflow for docs verification #WPB-19997

chore: Add workflow for docs verification #WPB-19997 #322

Workflow file for this run

name: Build
on:
workflow_dispatch:
pull_request:
jobs:
tests:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- uses: actions/setup-java@v5
with:
distribution: 'zulu'
java-version: '17'
- name: Lint
run: |
./gradlew ktlintCheck
- name: Detekt
run: |
./gradlew detekt
- name: Build
run: |
./gradlew build --info
- name: Store reports
if: failure()
uses: actions/upload-artifact@v4
with:
name: reports
path: |
**/build/reports/
**/build/test-results/