chore: Rename BoardInHome composable to BoardWidget #161
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: Lint Check | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache Gradle | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties', '**/buildSrc/**/*.kt') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: Setup JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: "temurin" | |
cache: gradle | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Generate Keystore file | |
run: | | |
echo "$KEYSTORE" > ./keystore.b64 | |
base64 -d -i ./keystore.b64 > ./keystore.jks | |
env: | |
KEYSTORE: ${{ secrets.RELEASE_KEYSTORE }} | |
- name: Generate local.properties | |
run: | | |
echo localKeyPassword=\"$KEY_PASSWORD\" >> local.properties | |
echo localKeyAlias=\"$KEY_ALIAS\" >> local.properties | |
echo localStoreFile=\"../keystore.jks\" >> local.properties | |
echo localStorePassword=\"$STORE_PASSWORD\" >> local.properties | |
shell: bash | |
env: | |
STORE_PASSWORD: ${{ secrets.RELEASE_PASSWORD }} | |
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }} | |
KEY_ALIAS: ${{ secrets.KEY_ALIAS }} | |
- name: Run ktlint | |
run: ./gradlew ktlintCheck |