Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

💚 integrate ci pipelines to single yml file #73

Merged
merged 3 commits into from
Jul 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Android Build CI Pipeline
name: Android CI Pipeline

on:
push:
Expand All @@ -10,6 +10,25 @@ on:
- main

jobs:
ktlint_check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'temurin'
- name: Set up environment variable for BuildConfig
env:
GOOGLE_WEB_CLIENT_ID: ${{ secrets.GOOGLE_WEB_CLIENT_ID }}
run: |
echo google_web_client_id=\"$GOOGLE_WEB_CLIENT_ID\" > ./android/local.properties
- name: Run ktLint
run: ./gradlew ktlintCheck
working-directory: ./android

build_test:
runs-on: ubuntu-latest
steps:
Expand Down
30 changes: 0 additions & 30 deletions .github/workflows/ci-android-lint.yml

This file was deleted.

30 changes: 0 additions & 30 deletions .github/workflows/ci-android-test.yml

This file was deleted.

Loading