Remote Config v2: client core, transport and experimental API (release train) #1206
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: Tests | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: set up JDK 18 | |
| uses: actions/setup-java@v1 | |
| with: | |
| java-version: 18 | |
| - name: Make gradlew executable | |
| run: chmod +x ./gradlew | |
| - name: Detekt | |
| run: ./gradlew detektAll | |
| - name: Set up Ruby 2.6 | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: 2.6.0 | |
| - name: Install dependencies | |
| run: bundle install | |
| - name: Fastlane Action | |
| uses: maierj/fastlane-action@v1.4.0 | |
| with: | |
| lane: test | |
| - name: Build and Tests | |
| run: | | |
| fastlane test |