Skip to content

3.4.0

3.4.0 #52

Workflow file for this run

name: Build and test
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '17'
cache: 'gradle'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Check code style
run: ./gradlew ktlintCheck --continue
- name: Check API binary compatibility
run: ./gradlew apiCheck
- name: Run tests
run: ./gradlew testDebug
- name: Build project
run: ./gradlew app:asDeb