Skip to content

Arbitrarily large alpha and beta grids in LEAPR #705

Arbitrarily large alpha and beta grids in LEAPR

Arbitrarily large alpha and beta grids in LEAPR #705

# GitHub workflow to enable continuous integratoin
name: Continuous Integration
# This workflow is triggered on pushes and pull requests to the repository.
# This workflow will also run each Monday on the default branch (i.e. master)
on:
schedule:
- cron: '0 0 * * 1'
push:
branches: '**'
pull_request:
branches:
- 'master'
- 'develop'
jobs:
build:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ ubuntu-20.04, macos-11 ]
build_type: [ Debug, Release ]
vFortran: [ gfortran-10 ]
steps:
- name: which gfortran
run: |
which ${{matrix.vFortran}}
${{matrix.vFortran}} --version
- uses: actions/checkout@v3
- name: mkdir bin
run: mkdir bin
- name: cmake
run: cmake -D CMAKE_Fortran_COMPILER=`which ${{matrix.vFortran}}` -D CMAKE_BUILD_TYPE=${{matrix.build_type}} ..
working-directory: ./bin
- name: make
run: make -j2
working-directory: ./bin
- name: ctest
run: ctest -j2
working-directory: ./bin