Skip to content

Merge branch 'main' of https://github.com/Loop3D/loopstructural-meshing #4

Merge branch 'main' of https://github.com/Loop3D/loopstructural-meshing

Merge branch 'main' of https://github.com/Loop3D/loopstructural-meshing #4

on:
push:
name: release-please
jobs:
linting:
name: Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black ruff
- name: Autoformat with black
run: |
black .
- name: Lint with ruff
run: |
ruff check . --fix
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "style: style fixes by ruff and autoformatting by black"