From ebb6974d957896d2d5294c19b16146477fb8fa3e Mon Sep 17 00:00:00 2001 From: Malte Sussdorff Date: Tue, 11 Aug 2026 09:50:09 +0200 Subject: [PATCH] ci(ccu-cli-f7q): adopt PR review workflow --- .coderabbit.yaml | 6 ++++++ .github/workflows/ci.yml | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 .coderabbit.yaml create mode 100644 .github/workflows/ci.yml diff --git a/.coderabbit.yaml b/.coderabbit.yaml new file mode 100644 index 0000000..c9a3b29 --- /dev/null +++ b/.coderabbit.yaml @@ -0,0 +1,6 @@ +language: en-US + +reviews: + profile: chill + request_changes_workflow: false + poem: false diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..c7df54e --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,33 @@ +name: CI + +on: + push: + branches: + - main + pull_request: + +permissions: + contents: read + +concurrency: + group: ci-${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + quality: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Install uv + uses: astral-sh/setup-uv@v6 + with: + enable-cache: true + + - name: Run test suite + run: uv run pytest -q + + - name: Build package + run: uv build