-
Notifications
You must be signed in to change notification settings - Fork 2
40 lines (31 loc) · 974 Bytes
/
check.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Check
on:
pull_request:
jobs:
danger:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Danger
uses: docker://ghcr.io/danger/danger-kotlin:1.2.0
with:
args: --failOnErrors --no-publish-check
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
check:
runs-on: macos-latest
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
- uses: actions/[email protected]
with:
distribution: 'zulu'
java-version-file: .ci-java-version
- uses: gradle/[email protected]
- name: Setup Gradle
uses: gradle/[email protected]
with:
gradle-version: wrapper
- name: Run gradle check
run: ./gradlew check
- name: Run ktlint and detekt
run: ./format --no-format && ./gradlew detektAppleMain detektJvmMain detektJsMain detektMetadataMain