Skip to content

adding a getter to the core to return the grid warehouse #170

adding a getter to the core to return the grid warehouse

adding a getter to the core to return the grid warehouse #170

Workflow file for this run

name: Ubuntu
on: [ push, pull_request ]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
gcc:
runs-on: ubuntu-24.04
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
strategy:
matrix:
gcc_version: [12, 13, 14]
env:
CXX: g++-${{ matrix.gcc_version }}
CC: gcc-${{ matrix.gcc_version }}
FC: gfortran-${{ matrix.gcc_version }}
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libnetcdf-dev netcdf-bin libnetcdff-dev liblapack-dev
sudo apt-get install -y python3-numpy python3-scipy
- name: Run Cmake
run: cmake -S . -B build
- name: Build
run: cmake --build build --parallel
- name: Run tests
run: |
cd build
ctest --rerun-failed --output-on-failure . --verbose