build(deps): bump io.github.koalaplot:koalaplot-core from 0.6.4 to 0.7.1 #209
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Android 格式检查 | |
on: | |
push: | |
branches: [main, dev] | |
paths-ignore: | |
- "**.md" | |
- "docs/**" | |
- "package.json" | |
- "yarn.lock" | |
- ".gitignore" | |
pull_request: | |
paths-ignore: | |
- "**.md" | |
- "docs/**" | |
- "package.json" | |
- "yarn.lock" | |
- ".gitignore" | |
jobs: | |
format-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: 设置 JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: "17" | |
distribution: "temurin" | |
cache: gradle | |
- name: 格式检查 | |
env: | |
KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }} | |
KEY_ALIAS: ${{ vars.KEY_ALIAS }} | |
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }} | |
run: chmod +x gradlew && ./gradlew spotlessCheck |