Skip to content

Add secrets in gitignore #7

Add secrets in gitignore

Add secrets in gitignore #7

Workflow file for this run

name: Android CI
on:
push:
branches: [main]
paths-ignore:
- '**/README.md'
pull_request:
branches: [main]
jobs:
build:
name: Build and Unit test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Check Lint
run: ./gradlew ktlintCheck
- name: Unit Test
run: ./gradlew test
- name: Build with Gradle
run: ./gradlew build