Skip to content

Improving the discretisation of the SA non-linear diffusion term $(\tilde{\nu})^2$ #2408

Improving the discretisation of the SA non-linear diffusion term $(\tilde{\nu})^2$

Improving the discretisation of the SA non-linear diffusion term $(\tilde{\nu})^2$ #2408

Workflow file for this run

name: Code Style
on:
pull_request:
paths:
- "**.[ch]pp"
- "**.[ch]"
- "**.cfg"
- "**.py"
jobs:
formatting:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: '3.10'
check-latest: true
- name: Install pre-commit
run: pip install pre-commit
- name: Run checks
run: pre-commit run -a -v
- name: Git status
if: always()
run: git status
- name: Full diff
if: always()
run: git diff