Skip to content

Add support for handling SubscribeLogsRequests to allow logs to be sent to and displayed in Home Assistant #66

Add support for handling SubscribeLogsRequests to allow logs to be sent to and displayed in Home Assistant

Add support for handling SubscribeLogsRequests to allow logs to be sent to and displayed in Home Assistant #66

Workflow file for this run

name: Unit Tests
on:
workflow_dispatch:
pull_request:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v5
with:
java-version: '21'
distribution: 'temurin'
- name: Change wrapper permissions
run: chmod +x ./gradlew
# Configure Gradle for optimal use in GitHub Actions, including caching of downloaded dependencies.
# See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v5
with:
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
- name: Run unit tests with Gradle Wrapper
run: ./gradlew testDebugUnitTest