Target API 35 - enable edge to edge mode, update status bar colors (#… #97
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: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
job: [UNIT, CHECKSTYLE, DATAFEED_CODEGEN, PROD-BUILD] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Set Up | |
run: ./scripts/travis/travis-before.sh ${{ matrix.job }} | |
- name: Run Job | |
run: ./scripts/travis/travis-worker.sh ${{ matrix.job }} |