fix github action #2
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: Android Unit Test | ||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
jobs: | ||
test-feature: | ||
Check failure on line 10 in .github/workflows/android-unit-test.yml GitHub Actions / Android Unit TestInvalid workflow file
|
||
runs-on: macOS-latest | ||
needs: build | ||
steps: | ||
- name: Checkout code | ||
uses: actions/[email protected] | ||
- name: Set up JDK 11 | ||
uses: actions/[email protected] | ||
with: | ||
distribution: 'adopt' | ||
java-version: '18' | ||
- name: Grant execute permissions for gradlew | ||
run: chmod +x ./gradlew | ||
- name: Run Tests with Gradle | ||
run: ./gradlew test |