Skip to content

feat: add renku-ci-cleanup chart #15

feat: add renku-ci-cleanup chart

feat: add renku-ci-cleanup chart #15

name: Lint cleanup.py script
on:
push:
paths:
- 'ci-deployment-cleanup/helm-chart/cleanup.py'
pull_request:
paths:
- 'ci-deployment-cleanup/helm-chart/cleanup.py'
permissions:
contents: read
jobs:
ruff:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install Ruff
run: pip install ruff
- name: Run Ruff format check
run: ruff format --check ci-deployment-cleanup/helm-chart/cleanup.py
- name: Run Ruff linting
run: ruff check ci-deployment-cleanup/helm-chart/cleanup.py