Skip to content

Size the T_l recurrence passes of the analytic add-back by their growth rate #20

Size the T_l recurrence passes of the analytic add-back by their growth rate

Size the T_l recurrence passes of the analytic add-back by their growth rate #20

Workflow file for this run

name: Build and test
on:
pull_request:
push:
branches: [master]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y cmake gfortran libnetcdff-dev libblas-dev liblapack-dev libfftw3-dev
- name: Configure
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DEXTRA_FLAGS=-Werror
- name: Build
run: cmake --build build -j
- name: Test
run: ctest --test-dir build --output-on-failure