Add dummy argument to type bound procedure, function_name
for
#689
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, pull_request] | |
jobs: | |
Build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macOS-latest] | |
fail-fast: true | |
env: | |
FC: gfortran | |
GCC_V: 13 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install Dependencies MacOS | |
run: | | |
brew install gcc@${GCC_V} gcc@9 | |
sudo ln -s $(which gfortran-${GCC_V}) $(dirname $(which gfortran-${GCC_V}))/gfortran | |
- name: Build and Test | |
run: | | |
export PATH="${HOME}/.local/bin:$PATH" | |
./setup.sh |