Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jimkring committed Apr 1, 2024
2 parents 00f2634 + 8445eeb commit b134eb7
Show file tree
Hide file tree
Showing 4 changed files with 78 additions and 52 deletions.
42 changes: 42 additions & 0 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"projectName": "OpenG-Array-Library",
"projectOwner": "vipm-io",
"files": [
"README.md"
],
"commitType": "docs",
"commitConvention": "angular",
"contributorsPerLine": 7,
"contributors": [
{
"login": "Bas-vE",
"name": "Basve",
"avatar_url": "https://avatars.githubusercontent.com/u/16207111?v=4",
"profile": "https://github.com/Bas-vE",
"contributions": [
"code",
"maintenance"
]
},
{
"login": "jimkring",
"name": "Jim Kring",
"avatar_url": "https://avatars.githubusercontent.com/u/381432?v=4",
"profile": "https://github.com/jimkring",
"contributions": [
"code",
"maintenance"
]
},
{
"login": "tcplomp",
"name": "tcplomp",
"avatar_url": "https://avatars.githubusercontent.com/u/2871661?v=4",
"profile": "https://github.com/tcplomp",
"contributions": [
"code",
"maintenance"
]
}
]
}
49 changes: 4 additions & 45 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,48 +10,7 @@ on:

jobs:

Checks:

runs-on: ubuntu-latest

steps:

- uses: actions/setup-python@v5
with:
python-version: '3.11'
# cache: 'pip'


- name: Checkout Repo
uses: actions/checkout@v4

- name: Install pylavi
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
uv venv
uv pip install pylavi
- name: Run pylavi Tests
shell: bash
run: |
# read the LabVIEW version from the first line of .lvversion file
LV_VERSION="$(head -n 1 .lvversion)"
# convert to integer
LV_VERSION=` echo $LV_VERSION | sed 's/\..*//' `
source .venv/bin/activate
# print helpful info
echo "Verifying:"
echo " - Save Version is $LV_VERSION"
echo " - Separate Compiled Code"
echo " - No Breakpoints"
# call pylavi
vi_validate \
--path source \
--path tests \
--gt $LV_VERSION --lt $((LV_VERSION+1)) \
--skip *.vit \
--no-code \
--breakpoints
ci-checks:
uses: vipm-io/OpenG-Tookit/.github/workflows/ci-checks.yml@main
with:
labview-version: 20.0
13 changes: 7 additions & 6 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Jim Kring @jimkring
Doug Femec
Ton Plomp @tcplomp
Bas-vE @Bas-vE
Cal-Bay Systems, Inc.
MKS Instruments, Inc.
* Jim Kring (@jimkring)
* Doug Femec
* Ton Plomp (@tcplomp)
* Bas-vE (@Bas-vE)
* JKI (https://jki.net)
* Cal-Bay Systems, Inc.
* MKS Instruments, Inc.
26 changes: 25 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# OpenG Array Library
[![Image](https://www.vipm.io/package/oglib_array/badge.svg?metric=installs)](https://www.vipm.io/package/oglib_array/)
[![Image](https://www.vipm.io/package/oglib_array/badge.svg?metric=stars)](https://www.vipm.io/package/oglib_array/)
[![All Contributors](https://img.shields.io/github/all-contributors/vipm-io/OpenG-Array-Library?color=ee8449&style=flat-square)](#contributors)

The OpenG Array Library package contains several routines for operating on array data.

Expand All @@ -10,4 +13,25 @@ The OpenG Array Library package contains several routines for operating on array

### Functions Palette

![Functions Palette](docs/functions_palette.png)
![Functions Palette](docs/functions_palette.png)

## Contributors

<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
<table>
<tbody>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Bas-vE"><img src="https://avatars.githubusercontent.com/u/16207111?v=4?s=100" width="100px;" alt="Basve"/><br /><sub><b>Basve</b></sub></a><br /><a href="#code-Bas-vE" title="Code">💻</a> <a href="#maintenance-Bas-vE" title="Maintenance">🚧</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/jimkring"><img src="https://avatars.githubusercontent.com/u/381432?v=4?s=100" width="100px;" alt="Jim Kring"/><br /><sub><b>Jim Kring</b></sub></a><br /><a href="#code-jimkring" title="Code">💻</a> <a href="#maintenance-jimkring" title="Maintenance">🚧</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/tcplomp"><img src="https://avatars.githubusercontent.com/u/2871661?v=4?s=100" width="100px;" alt="tcplomp"/><br /><sub><b>tcplomp</b></sub></a><br /><a href="#code-tcplomp" title="Code">💻</a> <a href="#maintenance-tcplomp" title="Maintenance">🚧</a></td>
</tr>
</tbody>
</table>

<!-- markdownlint-restore -->
<!-- prettier-ignore-end -->

<!-- ALL-CONTRIBUTORS-LIST:END -->

0 comments on commit b134eb7

Please sign in to comment.