forked from OpenModelica/OMPython
-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (39 loc) · 1.1 KB
/
Test.yml
File metadata and controls
46 lines (39 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Test
on:
push:
branches: ['master']
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
matrix:
python-version: ['3.10']
os: ['ubuntu-latest']
omc-version: ['stable']
steps:
- uses: actions/checkout@v4
- name: "Set up OpenModelica Compiler"
uses: AnHeuermann/setup-openmodelica@v0.6
with:
version: ${{ matrix.omc-version }}
packages: |
omc
- run: "omc --version"
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: 'x64'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install future pyparsing numpy psutil pyzmq
- name: Test OMPython
run: |
python -m unittest tests/test_ModelicaSystem.py
python -m unittest tests/test_OMParser.py
python -m unittest tests/test_ZMQ.py