Skip to content

Commit

Permalink
ci: add dco check
Browse files Browse the repository at this point in the history
  • Loading branch information
EthanPERRUZZA committed Sep 10, 2024
1 parent 950a5b1 commit ffb96c0
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -971,3 +971,18 @@ jobs:
- uses: actions/checkout@v4
- name: REUSE Compliance Check
uses: fsfe/reuse-action@v4

check_dco:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.x
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Check DCO
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
pip3 install -U dco-check
dco-check

0 comments on commit ffb96c0

Please sign in to comment.