From 52db5dafcfd89951ac38d7fb62b6f6be4a2052a4 Mon Sep 17 00:00:00 2001 From: AIprototype Date: Wed, 14 Feb 2024 10:31:37 +0000 Subject: [PATCH] Create kdoc-check.yml Adding the GitHub action for PRs to check for Kdocs on new functions --- .github/workflows/kdoc-check.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/kdoc-check.yml diff --git a/.github/workflows/kdoc-check.yml b/.github/workflows/kdoc-check.yml new file mode 100644 index 0000000..fe7c83e --- /dev/null +++ b/.github/workflows/kdoc-check.yml @@ -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