Skip to content

0.5.0

0.5.0 #214

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 }}