[Docs] Added Query Commands to SDC Syntax Docs #42
Workflow file for this run
This file contains hidden or 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: lint | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| lint_python: | |
| name: Lint Python Code | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Check out Git repository | |
| uses: actions/checkout@v5 | |
| - name: Install Requirements | |
| run: | | |
| python3 -m pip install --upgrade pip | |
| pip install .[lint] | |
| - name: Lint with Flake8 | |
| run: flake8 --statistics . | |
| lint_tcl: | |
| name: Lint TCL Scripts | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Check out Git repository | |
| uses: actions/checkout@v5 | |
| - name: Install Requirements | |
| run: | | |
| python3 -m pip install --upgrade pip | |
| pip install .[lint] | |
| - name: Lint with tclint | |
| run: | | |
| tclfmt --check . | |
| tclint . | |
| spelling: | |
| name: Check Spelling | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Check out Git repository | |
| uses: actions/checkout@v5 | |
| - name: Install Requirements | |
| run: | | |
| python3 -m pip install --upgrade pip | |
| pip install .[lint] | |
| - name: Check Spelling | |
| run: codespell |