Add multicluster scenario #449
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: Pytest | |
on: | |
- push | |
- pull_request | |
jobs: | |
python_tools: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python-version: | |
- "3.11" | |
- "3.12" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- run: pip install --upgrade setuptools wheel importlib-metadata | |
- run: pip install pycodestyle pydocstyle pytest pytest-cov behave semver jsonschema | |
- name: Style checks | |
run: make code-style docs-style | |
- name: Unit tests | |
run: make unit_tests | |
- name: Unit tests coverage | |
run: make coverage | |
docs_check: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Scenarios list check | |
run: make doc-check |