Update test matrix #958
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test-Publish | |
| on: | |
| push: | |
| branches: ['master'] | |
| tags: | |
| - 'v*' # only publish when pushing version tags (e.g., v1.0.0) | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 30 | |
| strategy: | |
| matrix: | |
| # test for: | |
| # * Python 3.10 - oldest supported version | |
| # * Python 3.12 - changes in OMCSession / OMCPath | |
| # * Python 3.14 - latest Python version | |
| python-version: ['3.10', '3.12', '3.14'] | |
| # * Linux using ubuntu-latest | |
| # * Windows using windows-latest | |
| os: ['ubuntu-latest', 'windows-latest'] | |
| # * OM 1.25.0 - before changing definition of simulation overrides | |
| # * OM stable - latest stable version | |
| # * OM nightly - latest nightly build | |
| omc-version: ['1.25.0', 'stable', 'nightly'] | |
| # => total of 12 runs for each test | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| architecture: 'x64' | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip build setuptools wheel twine | |
| pip install . pytest pytest-md pytest-emoji pre-commit | |
| - name: Set timezone | |
| uses: szenius/set-timezone@v2.0 | |
| with: | |
| timezoneLinux: 'Europe/Berlin' | |
| - name: Run pre-commit linters | |
| run: 'pre-commit run --all-files' | |
| - name: "Set up OpenModelica Compiler" | |
| uses: OpenModelica/setup-openmodelica@v1.0.5 | |
| 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: Build wheel and sdist packages | |
| run: python -m build --wheel --sdist --outdir dist | |
| - name: Check twine | |
| run: python -m twine check dist/* | |
| - 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' | |
| Publish: | |
| name: Publish to PyPI | |
| runs-on: ${{ matrix.os }} | |
| needs: test | |
| strategy: | |
| matrix: | |
| python-version: ['3.10'] | |
| os: ['ubuntu-latest'] | |
| if: startsWith(github.ref, 'refs/tags/') | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| architecture: 'x64' | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip build setuptools wheel twine | |
| - name: Build wheel and sdist packages | |
| run: python -m build --wheel --sdist --outdir dist | |
| - name: Publish wheel and sdist packages to PyPI | |
| env: | |
| TWINE_USERNAME: __token__ | |
| TWINE_PASSWORD: ${{ secrets.PYPI_OMPYTHON_API_TOKEN }} | |
| run: | | |
| python -m twine upload dist/* --skip-existing |