Skip to content

Move transformations (index2offset, transpose) from Fortran to Python #8710

Move transformations (index2offset, transpose) from Fortran to Python

Move transformations (index2offset, transpose) from Fortran to Python #8710

Workflow file for this run

name: ICON4Py Quality Assurance
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
types: [opened, reopened, synchronize]
jobs:
pre-commit-icon4py-model:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install libboost-all-dev
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version-file: ".python-version"
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
activate-environment: true
- name: Install icon4py namespace packages
run: uv sync --extra all
- name: "Run pre-commit"
uses: pre-commit/[email protected]