Skip to content

feat: co-badged cards example app #4

feat: co-badged cards example app

feat: co-badged cards example app #4

Workflow file for this run

name: Lint code
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: '17'
- name: Run lint checks
run: ./gradlew clean lint
- name: Run ktlint checks
run: ./gradlew clean ktlintCheck