Skip to content

Commit

Permalink
Create kdoc-check.yml
Browse files Browse the repository at this point in the history
Adding the GitHub action for PRs to check for Kdocs on new functions
  • Loading branch information
AIprototype authored Feb 14, 2024
1 parent a0a7485 commit 52db5da
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/kdoc-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: KDoc Check

on: pull_request

jobs:
kdoc-validation:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.x'

- name: Run KDoc check script
run: python kdoc_check.py

0 comments on commit 52db5da

Please sign in to comment.