Skip to content

Merge pull request #52 from aetherus-wg/spack-environment #32

Merge pull request #52 from aetherus-wg/spack-environment

Merge pull request #52 from aetherus-wg/spack-environment #32

Workflow file for this run

name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main, develop ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install HDF5
run: sudo apt-get update && sudo apt-get install libhdf5-dev
- name: Install netCDF
run: sudo apt-get update && sudo apt-get install libnetcdf-dev
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose