Skip to content

Add validation flag for assimp #6945

Add validation flag for assimp

Add validation flag for assimp #6945

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: '.'
extensions: 'h,cxx,in'
exclude: './cmake **/*.py.in **/*.log.in **/*.json.in **/*.thumbnailer.in **/*.cmake.in **/*.desktop.in'
clangFormatVersion: 18
- name: Python Formatting
uses: psf/black@stable
with:
options: "--check --verbose --include '(\\.py|\\.py\\.in)'"
- 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