Skip to content

Test

Test #9

Workflow file for this run

name: Test
on:
push:
branches: ['master']
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
matrix:
python-version: ['3.12']
os: ['ubuntu-latest', 'windows-latest']
omc-version: ['stable']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: 'x64'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install . pytest pytest-md pytest-emoji pre-commit
- name: Set timezone
uses: szenius/[email protected]
with:
timezoneLinux: 'Europe/Berlin'
- name: Run pre-commit linters
run: 'pre-commit run --all-files'
- name: "Set up OpenModelica Compiler"
uses: OpenModelica/[email protected]
with:
version: ${{ matrix.omc-version }}
packages: |
omc
libraries: |
'Modelica 4.0.0'
- run: "omc --version"
- name: Pull OpenModelica docker image
if: runner.os != 'Windows'
run: docker pull openmodelica/openmodelica:v1.25.0-minimal
- name: Run pytest
uses: pavelzw/pytest-action@v2
with:
verbose: true
emoji: true
job-summary: true
custom-arguments: '-v '
click-to-expand: true
report-title: 'Test Report'