Skip to content

Commit 0bd08fa

Browse files
committed
ci:linux + windows + macos
1 parent e695a2e commit 0bd08fa

File tree

4 files changed

+8
-17
lines changed

4 files changed

+8
-17
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,12 @@ on:
1010
jobs:
1111
linux:
1212
timeout-minutes: 15
13-
runs-on: ubuntu-latest
13+
runs-on: ${{ matrix.os }}
14+
15+
strategy:
16+
matrix:
17+
os: [ubuntu-latest, windows-latest, macos-latest]
18+
1419
steps:
1520
- uses: actions/checkout@v2
1621

CITATION.cff

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
cff-version: 1.2.0
2-
message: "If you use this software, please cite it as below."
32
authors:
43
- family-names: Hirsch
54
given-names: Michael

Readme.md

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,13 @@
77
Matlab users coming from other languages often notice the missing functionality contained within this user-developed, unofficial "stdlib" for Matlab.
88
These system "sys", file I/O "fileio" and HDF5/NetCDF "hdf5nc" function are useful across several of our own and others projects.
99

10-
## Usage
11-
12-
This package is a Matlab package, so we assume you have done like:
13-
14-
```matlab
15-
import stdlib.hdf5nc.*
16-
import stdlib.fileio.*
17-
import stdlib.sys.*
18-
```
19-
20-
or use the full package name like `stdlib.fileio.expanduser()`
21-
2210
Selftests can be run from that matlab-stdlib/ directory:
2311

2412
```matlab
2513
runtests('stdlib.tests')
2614
```
2715

28-
### HDF5
16+
## HDF5
2917

3018
```matlab
3119
import stdlib.hdf5nc.*
@@ -62,7 +50,7 @@ Get the names of all datasets in a file
6250
h5variables(filename)
6351
```
6452

65-
### NetCDF4
53+
## NetCDF4
6654

6755
```matlab
6856
import stdlib.hdf5nc.*

codemeta.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
"downloadUrl": "https://github.com/geospace-code/matlab-stdlib/releases",
99
"issueTracker": "https://github.com/geospace-code/matlab-stdlib/issues",
1010
"name": "matlab-stdlib",
11-
"version": "4.1.4",
1211
"identifier": "10.5281/zenodo.3964541",
1312
"description": "Matlab unofficial standard library, including HDF5 / NetCDF4 functions that should be included in Matlab.",
1413
"applicationCategory": "computation",

0 commit comments

Comments
 (0)