Skip to content

Update the .zenodo.json file for auto-DOI generation upon release #19

Update the .zenodo.json file for auto-DOI generation upon release

Update the .zenodo.json file for auto-DOI generation upon release #19

Workflow file for this run

name: Ubuntu
on: [pull_request, workflow_dispatch]
concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: true
jobs:
gnu:
runs-on: ubuntu-latest
strategy:
matrix:
build_type: [Debug, Release]
env:
FC: gfortran
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libnetcdf-dev netcdf-bin libnetcdff-dev
- name: Run Cmake
run: cmake -S . -B build -D CMAKE_BUILD_TYPE=${{ matrix.build_type }}
- name: Build
run: cmake --build build --verbose