Skip to content

Merge pull request #64 from tgyuuAn/feature/#63 #43

Merge pull request #64 from tgyuuAn/feature/#63

Merge pull request #64 from tgyuuAn/feature/#63 #43

Workflow file for this run

name: ktlint-check

Check failure on line 2 in .github/workflows/ktlint-check.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ktlint-check.yml

Invalid workflow file

You have an error in your yaml syntax on line 2
on:
push:
branches:
- develop
- release
- main
pull_request:
branches:
- develop
- release
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: zulu
cache: gradle
- name: add google-services.json
run: echo '${{ secrets.GOOGLE_SERVICES_JSON }}' > ./app/google-services.json
- name: Build with Gradle
run: ./gradlew build
- name: Lint Code Style
run: ./gradlew ktlintCheck