model.base: change type of SpecificAssetId.value
to Identifier
#256
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: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.7", "3.9", "3.11"] | |
env: | |
COUCHDB_ADMIN_PASSWORD: "yo0Quai3" | |
services: | |
couchdb: | |
image: couchdb:3 | |
ports: | |
- 5984:5984 | |
env: | |
COUCHDB_USER: "admin" | |
COUCHDB_PASSWORD: ${{ env.COUCHDB_ADMIN_PASSWORD }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Python dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install coverage | |
pip install -r requirements.txt | |
- name: Setup test config and CouchDB database server | |
run: | | |
python test/_helper/setup_testdb.py -u "admin" -p "$COUCHDB_ADMIN_PASSWORD" | |
- name: Test with coverage + unittest | |
run: | | |
coverage run --source=basyx -m unittest | |
- name: Report test coverage | |
if: ${{ always() }} | |
run: | | |
coverage report -m | |
static-analysis: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
- name: Install Python dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pycodestyle mypy | |
pip install -r requirements.txt | |
- name: Check typing with MyPy | |
run: | | |
mypy basyx test | |
- name: Check code style with PyCodestyle | |
run: | | |
pycodestyle --count --max-line-length 120 basyx test | |
package: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install setuptools wheel | |
- name: Create source and wheel dist | |
run: | | |
python setup.py sdist bdist_wheel |