Add count
argument to scalar read/write
#58
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: Tests | |
on: [push, pull_request] | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
standard_tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install dependencies | |
run: sudo apt update && | |
sudo apt install -y | |
gfortran | |
make | |
libnetcdf-dev | |
libnetcdff-dev | |
netcdf-bin | |
python3 | |
- name: System information | |
run: | | |
cat /etc/*release | |
gfortran --version | |
nf-config --all | |
- uses: actions/checkout@v3 | |
- name: Set up Python "3.x" | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.x" | |
- name: Install fypp | |
run: pip install fypp | |
- name: Build neasy-f | |
run: ./scripts/ci_build_and_run.sh |