[FAILED] Index V2 support and some cleanups (Release v0.6.0) (#309) #118
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: Test Droid-ify Code | |
on: | |
push: | |
branches: | |
- '*' | |
paths-ignore: | |
- '**.md' | |
- '**.yml' | |
pull_request: | |
branches: | |
- '*' | |
paths-ignore: | |
- '**.md' | |
types: [opened, reopened] | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Grant execution permission to Gradle Wrapper | |
run: chmod +x gradlew | |
- name: Grant execution permission to Gradle Wrapper | |
run: chmod +x gradlew | |
- name: Test Droid-ify | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: test |