Skip to content

Feat: Backend server split into components + tests + some other improvements #7

Feat: Backend server split into components + tests + some other improvements

Feat: Backend server split into components + tests + some other improvements #7

Workflow file for this run

# SPDX-FileCopyrightText: 2025 robot-visual-perception
#
# SPDX-License-Identifier: MIT
name: DCO Check
on:
pull_request:
branches: [main]
permissions:
contents: read
pull-requests: read
jobs:
check-signoff:
name: Check commit sign-off
runs-on: ubuntu-latest
steps:
- name: Get PR commits
id: get_commits
uses: tim-actions/get-pr-commits@v1.1.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: DCO check
uses: tim-actions/dco@v1.1.0
with:
commits: ${{ steps.get_commits.outputs.commits }}