Skip to content

Sign off req

Sign off req #6

Workflow file for this run

name: DCO Check
on:
pull_request:
branches: [ "main" ]
jobs:
dco:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Set up uv
uses: astral-sh/setup-uv@v1
- name: Install DCO Check
run: uv pip install dco-check
- name: Run DCO Check
run: uv run dco-check --strict --verbose