diff --git a/.github/workflows/hassfest.yaml b/.github/workflows/hassfest.yaml new file mode 100644 index 0000000..0519cf9 --- /dev/null +++ b/.github/workflows/hassfest.yaml @@ -0,0 +1,12 @@ +name: Validate with hassfest + +on: + pull_request: + workflow_dispatch: + +jobs: + validate: + runs-on: "ubuntu-latest" + steps: + - uses: "actions/checkout@v4" + - uses: "home-assistant/actions/hassfest@master" \ No newline at end of file diff --git a/.github/workflows/validate.yaml b/.github/workflows/validate.yaml new file mode 100644 index 0000000..98c0a15 --- /dev/null +++ b/.github/workflows/validate.yaml @@ -0,0 +1,15 @@ +name: Validate + +on: + pull_request: + workflow_dispatch: + +jobs: + validate-hacs: + runs-on: "ubuntu-latest" + steps: + - uses: "actions/checkout@v4" + - name: HACS Validation + uses: "hacs/action@main" + with: + category: "integration" \ No newline at end of file