Skip to content

Update branch name in validate_hacs.yml #198

Update branch name in validate_hacs.yml

Update branch name in validate_hacs.yml #198

Workflow file for this run

name: CI Checks
on:
pull_request:
merge_group:
jobs:
ci-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 black bandit pytest pytest-cov
- name: Lint with flake8
run: |
flake8 .
- name: Check code formatting with black
run: |
black --check .
- name: Security analysis with bandit
run: |
bandit -r .