File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010
1111jobs :
1212
13- shared- ci-checks :
13+ ci-checks :
1414 uses : vipm-io/OpenG-Tookit/.github/workflows/ci-checks.yml@main
1515 with :
1616 labview-version : 2.0
17-
18- Checks :
19-
20- runs-on : ubuntu-latest
21-
22- steps :
23-
24- - uses : actions/setup-python@v5
25- with :
26- python-version : ' 3.11'
27- # cache: 'pip'
28-
29-
30- - name : Checkout Repo
31- uses : actions/checkout@v4
32-
33- - name : Install pylavi
34- run : |
35- curl -LsSf https://astral.sh/uv/install.sh | sh
36- uv venv
37- uv pip install pylavi
38-
39- - name : Run pylavi Tests
40- shell : bash
41- run : |
42-
43- # read the LabVIEW version from the first line of .lvversion file
44- LV_VERSION="$(head -n 1 .lvversion)"
45- # convert to integer
46- LV_VERSION=` echo $LV_VERSION | sed 's/\..*//' `
47- source .venv/bin/activate
48-
49- # print helpful info
50- echo "Verifying:"
51- echo " - Save Version is $LV_VERSION"
52- echo " - Separate Compiled Code"
53- echo " - No Breakpoints"
54-
55- # call pylavi
56- vi_validate \
57- --path source \
58- --path tests \
59- --gt $LV_VERSION --lt $((LV_VERSION+1)) \
60- --skip *.vit \
61- --no-code \
62- --breakpoints
You can’t perform that action at this time.
0 commit comments