Remove unneeded deps; restore source compatibility for Interactor; add mavenCentral publishing #880
  
    
      This file contains hidden or 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 Android | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| name: JDK ${{ matrix.java_version }} | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ./ | |
| strategy: | |
| matrix: | |
| java_version: [17] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Install JDK | |
| uses: actions/setup-java@v2 | |
| with: | |
| distribution: 'zulu' | |
| java-version: ${{ matrix.java_version }} | |
| - name: Install Android SDK | |
| uses: malinskiy/action-android/install-sdk@release/0.1.1 | |
| - name: Gradle Wrapper Validation | |
| uses: gradle/wrapper-validation-action@v1 | |
| - name: Configure Gradle | |
| # Gradle configuration install deps | |
| run: ./gradlew help | |
| - name: Spot check | |
| run: ./gradlew spotlessCheck --stacktrace | |
| - name: Build Project | |
| run: ./gradlew assemble --stacktrace | |
| - name : Testing | |
| run: ./gradlew test --stacktrace | |
| - name: Final Checks | |
| run: ./gradlew check --stacktrace | |
| - name: Upload snapshot | |
| run: ./gradlew publish -PmavenCentralUsername="${{ secrets.SonatypeUsername }}" -PmavenCentralPassword="${{ secrets.SonatypePassword }}" | |
| if: success() && github.ref == 'refs/heads/main' && github.event_name != 'pull_request' && matrix.java_version == '11' |