build(deps): bump org.jetbrains.compose from 1.7.1 to 1.8.0+dev2034 #13
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: KMP 格式检查 | |
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 |