diff --git a/.reqcheck_override.yaml b/.reqcheck_override.yaml
new file mode 100644
index 0000000..0c16caf
--- /dev/null
+++ b/.reqcheck_override.yaml
@@ -0,0 +1,6 @@
+---
+packages:
+  all:
+    - name: "python-yaml"
+    - name: "python-PyYAML"
+    - name: "PyYAML"
diff --git a/.zuul.yaml b/.zuul.yaml
index 3d4dcf0..b1cdf5d 100644
--- a/.zuul.yaml
+++ b/.zuul.yaml
@@ -17,6 +17,18 @@
       - ^doc/.*$
       - ^releasenotes/.*$
 
+- job:
+    name: validations-common-reqcheck
+    nodeset: centos-8
+    parent: base
+    run: playbooks/reqcheck.yaml
+    timeout: 1600
+    voting: false
+    required-projects:
+      - openstack/validations-common
+    files:
+      - ^requirements.txt$
+
 - job:
     description: Base validations-common job
     name: validations-common-centos-8-base
@@ -47,6 +59,7 @@
       - validations-common-molecule-jobs
     check:
       jobs:
+        - validations-common-reqcheck
         - openstack-tox-linters
         - openstack-tox-cover
         - openstack-tox-py36
diff --git a/playbooks/reqcheck.yaml b/playbooks/reqcheck.yaml
new file mode 100644
index 0000000..e429078
--- /dev/null
+++ b/playbooks/reqcheck.yaml
@@ -0,0 +1,45 @@
+---
+- hosts: all
+  name: validations-common-reqcheck
+  vars:
+    req_check_override: "{{ ansible_user_dir }}/{{ zuul.project.src_dir }}/.reqcheck_override.yaml"
+  tasks:
+    - name: Install rdopkg
+      changed_when: true
+      shell:
+        cmd: |
+          set -e
+          # Need to inherit system-site-packages for python-yum
+          sudo dnf install -y python3-virtualenv
+          virtualenv --system-site-packages {{ ansible_user_dir }}/.venv
+          source {{ ansible_user_dir }}/.venv/bin/activate
+          git clone https://github.com/softwarefactory-project/rdopkg.git
+          cd rdopkg
+          pip install .
+      args:
+        chdir: "{{ ansible_user_dir }}"
+
+    - name: Get distgit project info
+      changed_when: true
+      shell:
+        cmd: |
+          set -e
+          source {{ ansible_user_dir }}/.venv/bin/activate
+          rdopkg findpkg {{ zuul.project.name }} | sed -n "/^distgit/ s/distgit. \(.*\)/\1/p"
+      register: distgit
+      args:
+        chdir: "{{ ansible_user_dir }}"
+
+    - name: Clone distgit and reqcheck {{ zuul.project.name }} with rdopkg
+      changed_when: true
+      shell:
+        cmd: |
+          set -e
+          source {{ ansible_user_dir }}/.venv/bin/activate
+          git clone {{ distgit.stdout }}
+          cd validations-common-distgit
+          git remote add upstream {{ ansible_user_dir }}/{{ zuul.project.src_dir }}
+          git fetch upstream
+          rdopkg reqcheck --strict --override {{ req_check_override }}
+      args:
+        chdir: "{{ ansible_user_dir }}"