Skip to content

Add renovate.json

Add renovate.json #33

Workflow file for this run

name: CI
on:
push:
branches: [main,develop]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Set up Python
run: uv python install
- name: Build
id: build
run: |
uv sync
uv build
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: zzupy_ci_${{ github.sha }}
path: dist/
compression-level: 9