Merge pull request #1921 from f3d-app/release #6310
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | |
codespell-check: | |
name: Codespell Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: codespell-project/[email protected] | |
with: | |
check_filenames: true | |
check_hidden: true |