From 396a78fdb0d29e73f000bd2bd41a3b79a4f9c601 Mon Sep 17 00:00:00 2001 From: Krisjanis Lejejs Date: Sun, 26 Dec 2021 21:06:10 +0200 Subject: [PATCH] Added gitignore, Github workflow for validation --- .github/workflows/validate.yml | 17 +++++++++++++++++ .gitignore | 5 +++++ 2 files changed, 22 insertions(+) create mode 100644 .github/workflows/validate.yml create mode 100644 .gitignore diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml new file mode 100644 index 0000000..6b7f72e --- /dev/null +++ b/.github/workflows/validate.yml @@ -0,0 +1,17 @@ +name: Validate + +on: + push: + pull_request: + schedule: + - cron: "0 0 * * *" + +jobs: + validate: + runs-on: "ubuntu-latest" + steps: + - uses: "actions/checkout@v2" + - name: HACS validation + uses: "hacs/action@main" + with: + category: "integration" \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..adc559e --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +# Python +__pycache__/ + +# IDE +.vscode \ No newline at end of file