Skip to content

[Docs] Added Query Commands to SDC Syntax Docs #42

[Docs] Added Query Commands to SDC Syntax Docs

[Docs] Added Query Commands to SDC Syntax Docs #42

Workflow file for this run

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