Example Tagging Release #32
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check - mdlint | |
on: | |
pull_request: | |
types: | |
- assigned | |
- opened | |
- synchronize | |
- reopened | |
paths: | |
- "**.md" | |
- "hack/check/check-mdlint.sh" | |
jobs: | |
checkmdlint: | |
name: Check mdlint | |
# Only run this job if we're in the main repo, not a fork. | |
if: github.repository == 'deepgram/deepgram-python-sdk' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code by commit | |
uses: actions/checkout@v4 | |
- name: Ensure dependencies installed | |
shell: bash | |
run: | | |
make ensure-deps | |
- name: Run mdlint | |
run: | | |
make mdlint |