Skip to content

fix : added merge group support + action.yml for github action (#129) #213

fix : added merge group support + action.yml for github action (#129)

fix : added merge group support + action.yml for github action (#129) #213

Workflow file for this run

name: DCO
on:
pull_request:
push:
branches:
- master
jobs:
check_dco:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
name: Check DCO
steps:
- name: Run dco-check
uses: christophebedard/dco-check@master
with:
python-version: ${{ matrix.python-version }}
args: '--verbose'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}