Bumped version to 2.1.2-SNAPSHOT #50
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 | |
on: | |
push: | |
paths-ignore: | |
- '**/*.md' | |
pull_request: | |
paths-ignore: | |
- '**/*.md' | |
jobs: | |
build: | |
if: false | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Java 8 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '8' | |
- uses: gradle/gradle-build-action@v2 | |
- name: Build with Gradle | |
run: ./gradlew build | |
# - name: Upload coverage to Codecov | |
# uses: codecov/codecov-action@v3 | |
# with: | |
# file: ./build/reports/jacoco/test/jacocoTestReport.xml | |
# Android check | |
# - name: Setup Android SDK | |
# uses: android-actions/setup-android@v2 | |
# - name: Install Android API 26 | |
# run: sdkmanager "platforms;android-26" | |
# - name: Run Proguard check to check for API compatibility | |
# run: ./gradlew --no-daemon proguardCheck | |
# env: | |
# API_LEVEL: 26 |