Reintroduce dgeqp3 and delete selected internal functions #24
Workflow file for this run
This file contains 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: CI | |
on: [pull_request] | |
jobs: | |
html_documentation_checks: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 5 | |
- name: Setup python environment | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.8 | |
- name: Install python packages | |
run: | | |
pip install --disable-pip-version-check --user futures | |
- name: Check links | |
timeout-minutes: 3 | |
run: python ./.CI/check_html.py checkLinks ./ | |
syntax_checks: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 5 | |
- name: Get moparser | |
run: git clone --depth=1 https://github.com/modelica-tools/ModelicaSyntaxChecker | |
- name: Check file encoding | |
run: "! find . -name '*.mo' -exec bash -c 'iconv -o /dev/null -f utf8 -t utf8 \"{}\" |& sed \"s,^,{}: ,\"' ';' | grep '.'" | |
- name: Check for UTF-8 BOM | |
run: "! find . -name '*.mo' -print0 | xargs -0 grep -l $'^\\xEF\\xBB\\xBF' | grep ." | |
- name: Check syntax | |
run: | | |
echo "::add-matcher::./.github/moparser.json" | |
ModelicaSyntaxChecker/Linux64/moparser -v 3.6 -r Modelica_LinearSystems2 | |
echo "::remove-matcher owner=moparser::" | |
deprecation_checks: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 5 | |
- name: Setup python environment | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.8 | |
- name: Check deprecated Text.lineColor annotation | |
run: | | |
echo "::add-matcher::./.github/check_deprecated_line_color.json" | |
python ./.CI/check_deprecated_line_color.py Modelica_LinearSystems2 | |
echo "::remove-matcher owner=check_deprecated_line_color::" |