KUX-2444: [RN]Upgrade to Smartlib 4.7.1 #32
Workflow file for this run
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: build CI | |
on: | |
push: | |
branches: [ "develop", "master", "main" ] | |
pull_request: | |
branches: [ "develop", "master", "main" ] | |
workflow_call: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
BROADPEAK_USERNAME: ${{ secrets.BROADPEAK_USERNAME }} | |
BROADPEAK_PASSWORD: ${{ secrets.BROADPEAK_PASSWORD }} | |
jobs: | |
gradle-build: | |
environment: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo and clone to CI workspace | |
uses: actions/checkout@v3 | |
- name: Setup JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
cache: 'gradle' | |
- name: Gradle Build... | |
run: ./gradlew build |