update workflows #6
Workflow file for this run
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: Verify Pull Request | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
types: [ opened, synchronize, reopened ] | |
branches: [ master, "bugfix/*", "feature/*", "release/*" ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
name: Code Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Setup Environment | |
uses: .github/actions/setup-env.yml | |
- name: Run Ktlint | |
run: ./gradlew ktlintCheck | |
- name: Run Android Lint | |
run: ./gradlew lint | |
build: | |
name: Build the App | |
runs-on: ubuntu-latest | |
needs: lint | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Setup Environment | |
uses: .github/actions/setup-env.yml | |
- name: Build with Gradle | |
run: ./gradlew build | |
test: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
needs: lint | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Setup Environment | |
uses: .github/actions/setup-env.yml | |
- name: Run unit tests | |
run: ./gradlew test |