Skip to content

added check unit test #9

added check unit test

added check unit test #9

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run Lint
run: ./gradlew lintDebug
- name: Upload lint check Report
uses: actions/upload-artifact@v4
with:
name: lint.html
path: domain/build/reports/lint-results-debug.html
unit-test:
needs:
- lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run tests
run: ./gradlew test
- name: Upload Test Report
uses: actions/upload-artifact@v4
with:
name: unit-test-report
path: domain/build/reports/tests/testDebugUnitTest/