Skip to content

Initial commit

Initial commit #1

Workflow file for this run

# Copyright 2026 The MathWorks, Inc.
name: Lint
on:
pull_request:
push:
branches: [main]
workflow_dispatch:
jobs:
lint:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.11'
- name: Install pre-commit
run: pip install pre-commit
- name: Run pre-commit checks
run: pre-commit run --all-files --show-diff-on-failure --color=always