Fix wildcard import causing ktlint check to fail #3
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: Unit Tests Workflow | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- '*' | |
jobs: | |
testing: | |
name: Lint Check and Testing | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone Repo | |
uses: actions/checkout@v1 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
# Run unit tests | |
- name: Run Unit Tests | |
run: ./gradlew testDebugUnitTest |