Files
Dana Robinson 2a756b087f Remove "CMake" from CI names, descriptions, etc. (#5813)
These are leftovers from when the CI included Autotools builds.

Also changes ctest --> CTest in a few places.
2025-09-12 09:24:12 -05:00

27 lines
585 B
YAML

name: hdf5 VFD CI
# Run VFD CI daily at 07:00 CDT (12:00 UTC) or on demand
on:
workflow_dispatch:
schedule:
- cron: "0 12 * * *"
permissions:
contents: read
jobs:
build_and_test:
strategy:
matrix:
build_mode: ["Release", "Debug"]
# Sets the job's name from the properties
name: "${{ matrix.build_mode }} Workflows"
# Don't run the action if the commit message says to skip CI
if: "!contains(github.event.head_commit.message, 'skip-ci')"
uses: ./.github/workflows/vfd-main.yml
with:
build_mode: ${{ matrix.build_mode }}