wasm-tbb: increase stack size and add CI #2754
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: Check code formatting | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
check_format: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DoozyX/[email protected] | |
with: | |
source: '.' | |
exclude: '*/third_party' | |
extensions: 'h,cpp,js,ts,html' | |
clangFormatVersion: 18 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
cache: 'pip' | |
- uses: psf/black@stable | |
with: | |
options: "--check --verbose" | |
src: "./bindings/python/examples" | |
- name: "gersemi cmake check" | |
run: | | |
pip3 install gersemi | |
./scripts/gersemi-check.sh | |