Skip to content

build(deps): bump actions/checkout from 6.0.2 to 6.0.3 #2679

build(deps): bump actions/checkout from 6.0.2 to 6.0.3

build(deps): bump actions/checkout from 6.0.2 to 6.0.3 #2679

name: Lint Tcl code
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
Tclint:
runs-on: ${{ vars.USE_SELF_HOSTED == 'true' && 'self-hosted' || 'ubuntu-latest' }}
steps:
- name: Checkout repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- uses: actions/setup-python@v6
with:
python-version: "3.10"
- name: Install Dependencies
run: |
python3 -m venv venv
venv/bin/pip install -r .github/requirements/requirements_lock.txt
- name: Lint
run: |
source venv/bin/activate
tclfmt --version
tclfmt --in-place .
git diff --exit-code
tclint .