Bump JamesIves/github-pages-deploy-action from 4.6.3 to 4.6.4 #85
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: Check Fortran API | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
branches-ignore: | |
- documentation | |
workflow_dispatch: | |
jobs: | |
API: | |
runs-on: ubuntu-22.04 | |
env: | |
# Core variables: | |
FC: gfortran-12 | |
FCFLAGS: "-ffree-line-length-none -m64 -std=f2008 -march=native -fbounds-check -fmodule-private -fimplicit-none -finit-real=nan -g -DRTE_USE_CBOOL" | |
RRTMGP_ROOT: ${{ github.workspace }} | |
RTE_KERNELS: extern | |
steps: | |
# | |
# Check out repository under $GITHUB_WORKSPACE | |
# | |
- name: Check out code | |
uses: actions/checkout@v4 | |
# | |
# Build libraries | |
# | |
- name: Build libraries | |
run: | | |
$FC --version | |
make -j4 libs |