refactor: replace current()
function with current
property in Occupancy
and Typing
APIs
#119
This file contains hidden or 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: Test | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: Android Release tests | |
task: testReleaseUnitTest | |
- name: Android Debug tests | |
task: testDebugUnitTest | |
- name: JVM tests | |
task: jvmTest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Java 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Set up Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: Run Gradle check | |
run: ./gradlew :chat:${{ matrix.task }} |