chore: enhance CI tests (#3344)
* chore: add swift linter * chore: add clang linters * chore: add kotlin linter * chore(ci): update workflows * chore(ci): clean workflows
This commit is contained in:
34
.github/workflows/check-android.yml
vendored
Normal file
34
.github/workflows/check-android.yml
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
name: Check Android
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
paths:
|
||||
- '.github/workflows/check-android.yml'
|
||||
- 'android/**'
|
||||
pull_request:
|
||||
paths:
|
||||
- '.github/workflows/check-android.yml'
|
||||
- 'android/**'
|
||||
|
||||
jobs:
|
||||
Kotlin-Lint:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- run: |
|
||||
curl -sSLO https://github.com/pinterest/ktlint/releases/download/1.0.0/ktlint && chmod a+x ktlint && sudo mv ktlint /usr/local/bin/
|
||||
- name: run ktlint
|
||||
working-directory: ./android/
|
||||
run: |
|
||||
ktlint --reporter=checkstyle,output=build/ktlint-report.xml --relative --editorconfig=./.editorconfig
|
||||
continue-on-error: true
|
||||
- uses: yutailang0119/action-ktlint@v3
|
||||
with:
|
||||
report-path: ./android/build/*.xml
|
||||
continue-on-error: false
|
||||
- uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: ktlint-report
|
||||
path: ./android/build/*.xml
|
||||
Reference in New Issue
Block a user