2024-11-23 15:19:29 +01:00
|
|
|
name: Check PR code
|
2024-11-20 21:44:07 +01:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
Lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Check out repository code
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-java@v4
|
|
|
|
with:
|
2024-12-30 15:42:34 +01:00
|
|
|
distribution: 'temurin'
|
2024-11-20 21:44:07 +01:00
|
|
|
java-version: '17'
|
2024-12-30 15:42:34 +01:00
|
|
|
cache: gradle
|
2024-11-20 21:44:07 +01:00
|
|
|
- name: Install klint
|
2025-01-11 20:35:27 +00:00
|
|
|
run: curl -sSLO https://github.com/pinterest/ktlint/releases/download/1.5.0/ktlint && chmod a+x ktlint && mv ktlint /usr/local/bin/
|
2024-11-20 21:44:07 +01:00
|
|
|
- name: Install detekt
|
2025-01-11 20:35:27 +00:00
|
|
|
run: curl -sSLO https://github.com/detekt/detekt/releases/download/v1.23.7/detekt-cli-1.23.7.zip && unzip detekt-cli-1.23.7.zip
|
2024-11-20 21:44:07 +01:00
|
|
|
- name: Linting...
|
2025-01-11 20:35:27 +00:00
|
|
|
run: ktlint 'shared/**/*.kt' 'androidApp/**/*.kt' '!shared/build'
|
2024-11-20 21:44:07 +01:00
|
|
|
- name: Detecting...
|
2025-01-11 20:35:27 +00:00
|
|
|
run: ./detekt-cli-1.23.7/bin/detekt-cli -c detekt.yml --excludes '**/shared/build/**/*.kt'
|
2024-11-23 15:19:29 +01:00
|
|
|
build:
|
2025-01-03 09:19:12 +01:00
|
|
|
needs: Lint
|
2025-01-11 20:35:27 +00:00
|
|
|
uses: ./.gitea/workflows/common_build.yml
|