Skip to content

Start on mesh simplification #362

Start on mesh simplification

Start on mesh simplification #362

Workflow file for this run

name: code-style
on: [push, pull_request]
jobs:
black:
name: black [format]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.8"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black
- name: Check code formatting
run: black --check .