Skip to content

#4003: Add script to help with finding issues that we need approval for #3037

#4003: Add script to help with finding issues that we need approval for

#4003: Add script to help with finding issues that we need approval for #3037

name: "[post-commit] all - Static checks, linters etc."
on:
workflow_dispatch:
push:
branches: ["main"]
workflow_call:
pull_request:
branches:
- "main"
jobs:
check-spdx-licenses:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.8'
cache: 'pip'
cache-dependency-path: infra/requirements-infra.txt
- name: Install infra deps
run: python -m pip install -r infra/requirements-infra.txt
- name: Check SPDX licenses
run: python -m check_copyright --verbose --dry-run --config ./check_copyright_config.yaml .
check-metal-kernel-count:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check kernel count in base metal is less than maximum
run: if (( $(find tt_metal/kernels/ -type f | wc -l) > 7 )); then exit 1; fi
check-black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: psf/[email protected]
check-doc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install ASPELL
run: sudo apt-get install -y aspell
- name: Run checks on docs
run: TT_METAL_HOME=$(pwd) docs/spellcheck.sh