Skip to content

Update README.md for OpenFOAM v2412 #1136

Update README.md for OpenFOAM v2412

Update README.md for OpenFOAM v2412 #1136

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_call:
inputs:
app-version:
type: string
required: true
workflow_dispatch:
inputs:
cache-build:
type: boolean
default: true
required: false
description: Cache build artifacts for later reuse
jobs:
ci:
strategy:
matrix:
build-os: [macos-14, macos-13]
openfoam-version: [2412, 2406]
fail-fast: false
uses: ./.github/workflows/build-test.yml
with:
build-os: ${{ matrix.build-os }}
openfoam-version: ${{ matrix.openfoam-version }}
app-version: ${{ inputs.app-version }}
cache-build: ${{ github.event_name == 'workflow_dispatch' && inputs.cache-build || github.event_name != 'workflow_dispatch' }}