Skip to content

Feature: api implementation #12

Feature: api implementation

Feature: api implementation #12

Workflow file for this run

name: checkstyle
on:
workflow_dispatch:
pull_request:
jobs:
checkstyle_detekt:
runs-on:
- ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Run detekt
run: ./gradlew detekt
checkstyle_lint:
runs-on:
- ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Run lint
run: ./gradlew lintDebug
test_unit:
runs-on:
- ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Run unit test
run: ./gradlew :data:testDebugUnitTest