Skip to content

Build and test via github action #3

Build and test via github action

Build and test via github action #3

Workflow file for this run

name: Build and test
# Trigger the workflow on push or pull request events
on:
push:
branches:
- main
- testing
pull_request:
branches:
- main
- testing
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Install dependencies
run: sudo apt-get install -y gdal libproj25 netcdf julia
- name: Build configure script
run: autoreconf -fi
- name: Run configure script
run: ./configure
- name: Build kestrel
run: make
- name: Run tests
run: make check