Skip to content

feat: add device discover response #68

feat: add device discover response

feat: add device discover response #68

Workflow file for this run

name: java unit tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
java_unit_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Maven Central Repository
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: unit tests
run: mvn -B clean test; mvn -B validate
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}