Skip to content

Remove C code from repo #127

Remove C code from repo

Remove C code from repo #127

Workflow file for this run

name: Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: apt-get update
run: sudo apt-get update
- name: Install HDF5
run: sudo apt-get install libhdf5-dev
- name: Install minimal stable
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
- name: Run tests
run: cargo test --all