Skip to content

Update the hive mqtt client #9

Update the hive mqtt client

Update the hive mqtt client #9

Workflow file for this run

name: Run Unit Tests
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
jobs:
test:
runs-on: ubuntu-latest
steps:
#"standard step" where repo needs to be checked-out first
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: 11
distribution: 'adopt'
cache: 'gradle'
- name: Unit Tests
run: ./gradlew test --stacktrace