Skip to content

Commit

Permalink
ci:linux + windows + macos
Browse files Browse the repository at this point in the history
  • Loading branch information
scivision committed Jan 31, 2022
1 parent e695a2e commit 0bd08fa
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 17 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@ on:
jobs:
linux:
timeout-minutes: 15
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
- uses: actions/checkout@v2

Expand Down
1 change: 0 additions & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
cff-version: 1.2.0
message: "If you use this software, please cite it as below."
authors:
- family-names: Hirsch
given-names: Michael
Expand Down
16 changes: 2 additions & 14 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,13 @@
Matlab users coming from other languages often notice the missing functionality contained within this user-developed, unofficial "stdlib" for Matlab.
These system "sys", file I/O "fileio" and HDF5/NetCDF "hdf5nc" function are useful across several of our own and others projects.

## Usage

This package is a Matlab package, so we assume you have done like:

```matlab
import stdlib.hdf5nc.*
import stdlib.fileio.*
import stdlib.sys.*
```

or use the full package name like `stdlib.fileio.expanduser()`

Selftests can be run from that matlab-stdlib/ directory:

```matlab
runtests('stdlib.tests')
```

### HDF5
## HDF5

```matlab
import stdlib.hdf5nc.*
Expand Down Expand Up @@ -62,7 +50,7 @@ Get the names of all datasets in a file
h5variables(filename)
```

### NetCDF4
## NetCDF4

```matlab
import stdlib.hdf5nc.*
Expand Down
1 change: 0 additions & 1 deletion codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
"downloadUrl": "https://github.com/geospace-code/matlab-stdlib/releases",
"issueTracker": "https://github.com/geospace-code/matlab-stdlib/issues",
"name": "matlab-stdlib",
"version": "4.1.4",
"identifier": "10.5281/zenodo.3964541",
"description": "Matlab unofficial standard library, including HDF5 / NetCDF4 functions that should be included in Matlab.",
"applicationCategory": "computation",
Expand Down

0 comments on commit 0bd08fa

Please sign in to comment.