Move _skip function to Rust module for performance #2352
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Lint with Ruff | |
| uses: astral-sh/ruff-action@v3 | |
| - name: Format with Ruff | |
| uses: astral-sh/ruff-action@v3 | |
| with: | |
| args: 'format --check' | |
| typing: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version-file: pyproject.toml | |
| - name: Check types with ty | |
| run: | | |
| uv run ty check | |
| test: | |
| runs-on: ubuntu-22.04 | |
| services: | |
| mysql: | |
| image: mysql:8.0 | |
| env: | |
| MYSQL_ROOT_PASSWORD: root | |
| ports: | |
| - "8888:3306" | |
| options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
| strategy: | |
| matrix: | |
| openfoam-version: [2506, 2006, 13, 9] | |
| python-version: ['3.10', '3.11', '3.12', '3.13', '3.14'] | |
| slurm: [false] | |
| include: | |
| - openfoam-version: 2506 | |
| python-version: '3.13' | |
| slurm: true | |
| - openfoam-version: 13 | |
| python-version: '3.13' | |
| slurm: true | |
| - openfoam-version: 2006 | |
| python-version: '3.10' | |
| slurm: true | |
| - openfoam-version: 9 | |
| python-version: '3.10' | |
| slurm: true | |
| fail-fast: false | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Set up OpenFOAM | |
| uses: gerlero/setup-openfoam@v1 | |
| with: | |
| openfoam-version: ${{ matrix.openfoam-version }} | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Set up Slurm | |
| if: matrix.slurm | |
| uses: koesterlab/setup-slurm-action@v1 | |
| - name: Install test dependencies | |
| run: | | |
| uv sync | |
| - name: Test with pytest | |
| run: | | |
| uv run pytest --cov=foamlib --cov-report xml | |
| env: | |
| OMPI_MCA_rmaps_base_oversubscribe: 1 | |
| OMPI_ALLOW_RUN_AS_ROOT: 1 | |
| OMPI_ALLOW_RUN_AS_ROOT_CONFIRM: 1 | |
| - name: Upload code coverage results to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Check package build | |
| run: | | |
| uv build |