Skip to content

🔨 Build: verify on check that all dependencies have compatible licenses #27

🔨 Build: verify on check that all dependencies have compatible licenses

🔨 Build: verify on check that all dependencies have compatible licenses #27

Workflow file for this run

name: CI
on: push
jobs:
Build:
runs-on: ubuntu-24.04
steps:
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: '11'
- uses: actions/checkout@v2
- name: Lint and check
run: ./gradlew check ktlintCheck ktlintTestSourceSetCheck ktlintAndroidTestSourceSetCheck lintDebug testDebugUnitTest --stacktrace
- name: Publish reports
uses: actions/upload-artifact@v1
with:
name: reports
path: sample-learning-app/build/reports
if: ${{ failure() }}