Remove Keras HDF5 #248
Workflow file for this run
This file contains 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 | |
on: | |
push: | |
paths: | |
- ".github/workflows/ci.yml" | |
- "fpm.toml" | |
- "**.f90" | |
pull_request: | |
paths: | |
- ".github/workflows/ci.yml" | |
- "fpm.toml" | |
- "**.f90" | |
jobs: | |
gnu-cmake-debug: | |
name: Build and test in debug mode | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Compile | |
run: cmake -DCMAKE_BUILD_TYPE=Debug -DSERIAL=1 . && make | |
- name: Test | |
run: make test | |
gnu-cmake-release: | |
name: Build and test in release mode | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Compile | |
run: cmake -DCMAKE_BUILD_TYPE=Release -DSERIAL=1 . && make | |
- name: Test | |
run: make test | |
gnu-fpm-debug: | |
name: Build and test in debug mode | |
runs-on: ubuntu-latest | |
steps: | |
- uses: fortran-lang/setup-fpm@v5 | |
with: | |
fpm-version: "v0.10.1" | |
- uses: actions/checkout@v4 | |
- name: Compile | |
run: fpm build --profile debug | |
- name: Test | |
run: fpm test --profile debug | |
gnu-fpm-release: | |
name: Build and test in release mode | |
runs-on: ubuntu-latest | |
steps: | |
- uses: fortran-lang/setup-fpm@v5 | |
with: | |
fpm-version: "v0.10.1" | |
- uses: actions/checkout@v4 | |
- name: Compile | |
run: fpm build --profile release | |
- name: Test | |
run: fpm test --profile release |