8000
Skip to content

Add Home Assistant app repository and app #39

Add Home Assistant app repository and app

Add Home Assistant app repository and app #39

Workflow file for this run

name: Go
on:
push:
branches: [ "main" ]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.24'
- name: Build
run: make build
- name: Test
run: make test
0