Skip to content

Variational formulation and out-of-plane motion #39

Variational formulation and out-of-plane motion

Variational formulation and out-of-plane motion #39

Workflow file for this run

name: Make sure code is ruff-formatted 🐶
on:
push:
branches-ignore: [ main, develop ]
pull_request:
branches: [ main, develop ]
workflow_call:
jobs:
format:
name: Make sure code is ruff-formatted 🐶
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
shell: bash -el {0}
run: |
python -m pip install --upgrade pip
python -m pip install ruff
python -m pip install -e ".[dev]"
- name: Check formatting with ruff
run: |
python -m ruff format . --check
python -m ruff check .