Skip to content

Fix HDF5 setup when separate_postproc_projects="y" #2258

Fix HDF5 setup when separate_postproc_projects="y"

Fix HDF5 setup when separate_postproc_projects="y" #2258

Workflow file for this run

# Based on example from https://github.com/julia-actions/julia-runtest
name: Run tests
on: [push, pull_request, workflow_dispatch]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
fail-fast: false
timeout-minutes: 50
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: '1.10'
arch: x64
- uses: julia-actions/julia-buildpkg@v1
with:
project: 'moment_kinetics/'
# The following is copied and simplified from
# https://github.com/julia-actions/julia-runtest/blob/master/action.yml
# in order to pass customised arguments to `Pkg.test()`
- run: |
julia --check-bounds=yes --color=yes --depwarn=yes --project=moment_kinetics/ -e 'import Pkg; Pkg.test(; test_args=["--force-optional-dependencies"])'
shell: bash