Skip to content

fix: update logging configuration and ensure log directory exists #45

fix: update logging configuration and ensure log directory exists

fix: update logging configuration and ensure log directory exists #45

Workflow file for this run

name: CI/CD/Build Pipeline
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
UV_CACHE_DIR: /tmp/.uv-cache
jobs:
ci:
name: Continuous Integration (Tests, Linting, Docs)
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up UV Environment
uses: astral-sh/[email protected]
with:
enable-cache: true
cache-dependency-glob: uv.lock
- name: Restore UV Cache
uses: actions/cache@v4
with:
path: /tmp/.uv-cache
key: "uv-${{ runner.os }}-${{ hashFiles('uv.lock') }}"
restore-keys: |
uv-${{ runner.os }}-${{ hashFiles('uv.lock') }}
uv-${{ runner.os }}
- name: Install Dependencies and Sync Project
run: uv sync
- name: Run Formatting, Linting, Type Checks, and Tests
run: |
uv run ruff format ./
uv run ruff check --fix ./
uv run mypy ./
uv run pytest
env:
CB_USERNAME: '${{ secrets.CB_USERNAME }}'
CB_TOKEN: '${{ secrets.CB_TOKEN }}'
- name: Upload Test Coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: '${{ secrets.CODECOV_TOKEN }}'
file: ./coverage.xml
fail_ci_if_error: true
- name: Scan with SonarCloud
uses: SonarSource/[email protected]
env:
SONAR_TOKEN: '${{ secrets.SONAR_TOKEN }}'
- name: Build Documentation
run: uv run make clean html --directory docs/
- name: Minimize UV Cache
run: uv cache prune --ci
cd:
name: Continuous Deployment (Release and Publish)
needs: ci
permissions:
id-token: write
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: main
- name: Set up UV Environment
uses: astral-sh/[email protected]
with:
enable-cache: true
cache-dependency-glob: uv.lock
- name: Run Python Semantic Release
id: release
uses: python-semantic-release/[email protected]
with:
github_token: '${{ secrets.GITHUB_TOKEN }}'
git_committer_name: 'MountainGod2'
git_committer_email: '[email protected]'
ssh_private_signing_key: '${{ secrets.GIT_COMMIT_SSH_PRIV_KEY }}'
ssh_public_signing_key: '${{ secrets.GIT_COMMIT_SSH_PUB_KEY }}'
- name: Publish to TestPyPI
if: steps.release.outputs.released == 'true'
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: 'https://test.pypi.org/legacy/'
- name: Test Install from TestPyPI
if: steps.release.outputs.released == 'true'
run: |
pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple chaturbate-poller
- name: Publish to PyPI
if: steps.release.outputs.released == 'true'
uses: pypa/gh-action-pypi-publish@release/v1
- name: Publish to GitHub Releases
if: steps.release.outputs.released == 'true'
uses: python-semantic-release/publish-action@main
with:
github_token: '${{ secrets.GITHUB_TOKEN }}'
build:
name: Build and Push Docker Image
needs: [ci, cd]
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up QEMU for Multi-Architecture Builds
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx for Multi-Platform Builds
uses: docker/setup-buildx-action@v3
- name: Generate Docker Image Metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/mountaingod2/chaturbate_poller
tags: |
type=schedule
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=sha
type=raw,value=latest,enable={{is_default_branch}}
- name: Log in to GitHub Container Registry
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
registry: ghcr.io
username: '${{ github.repository_owner }}'
password: '${{ secrets.GITHUB_TOKEN }}'
- name: Build and Push Docker Image
uses: docker/build-push-action@v6
with:
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- name: Run Docker Image Tests
run: docker run --rm ghcr.io/mountaingod2/chaturbate_poller:latest --version