Skip to content

Bundlr

Bundlr #388

Workflow file for this run

name: Android CI
on:
push:
branches: [ main ]
paths-ignore:
- '*.md'
- '.transifex/**'
- 'assets/**'
- 'publishing/**'
- 'scripts/publish/**'
pull_request:
branches: [ main ]
paths-ignore:
- '*.md'
- '**/res/values-*/strings.xml'
- '.transifex/**'
- 'assets/**'
- 'publishing/**'
- 'scripts/publish/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle and run tests
run: ./gradlew lintDebug && ./gradlew buildDebug && ./gradlew testDebug