Skip to content

Commit

Permalink
👷 Update CI/CD workflow configuration
Browse files Browse the repository at this point in the history
Replace hassfest and validate workflows with new ci-cd.xml

Remove .github/workflows/hassfest.yaml and validate.yml
Add new .github/workflows/ci-cd.xml to consolidate CI/CD processes
  • Loading branch information
hyperb1iss committed Aug 14, 2024
1 parent c570c73 commit a02ae2a
Show file tree
Hide file tree
Showing 3 changed files with 134 additions and 33 deletions.
134 changes: 134 additions & 0 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,134 @@
name: CI/CD Pipeline

on:
push:
branches:
- main
tags:
- "v*.*.*"
pull_request:
branches:
- main

jobs:
lint:
name: Lint Code Base
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: "3.12"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Run Ruff
run: poetry run ruff check .

test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: "3.12"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Run tests with pytest
run: poetry run pytest --cov=custom_components/signalrgb --cov-report=xml

validate:
name: Validate Project
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Run hassfest
run: |
hassfest
- name: HACS validation
uses: hacs/action@main
with:
category: integration

build:
name: Build Project
needs: [lint, test, validate]
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: "3.12"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Build the package
run: |
poetry build
release:
name: Create Release
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: "3.12"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Bump version and create a release
id: create_release
run: |
VERSION=$(poetry version --short)
git tag v$VERSION
git push --tags
echo "::set-output name=version::$VERSION"
- name: Create GitHub Release
uses: actions/create-release@v1
with:
tag_name: v${{ steps.create_release.outputs.version }}
release_name: Release ${{ steps.create_release.outputs.version }}
draft: false
prerelease: false

- name: Upload Build Artifacts
uses: actions/upload-artifact@v3
with:
name: dist
path: dist/
14 changes: 0 additions & 14 deletions .github/workflows/hassfest.yaml

This file was deleted.

19 changes: 0 additions & 19 deletions .github/workflows/validate.yml

This file was deleted.

0 comments on commit a02ae2a

Please sign in to comment.