Skip to content

Adding color as a proper option type #6527

Adding color as a proper option type

Adding color as a proper option type #6527

Workflow file for this run

name: Style Checks
on: [push, pull_request]
jobs:
formatting-check:
name: Formatting Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: C++ Formatting
uses: DoozyX/[email protected]
with:
source: 'application examples java library plugins python vtkext webassembly'
extensions: 'h,cxx,in'
exclude: '**/*.py.in'
clangFormatVersion: 18
- name: Python Formatting
uses: psf/black@stable
with:
options: "--check --verbose --include '(\\.py|\\.py\\.in)'"
src: "./python"
- name: Prettier Formatting
uses: creyD/[email protected]
with:
dry: True
prettier_options: '-c **/*.{js,json,md,html}'
codespell-check:
name: Codespell Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: codespell-project/actions-codespell@v2
with:
check_filenames: true
check_hidden: true