Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into extension_of_invoice_…
Browse files Browse the repository at this point in the history
…types
  • Loading branch information
hf-kklein committed Sep 28, 2023
2 parents bbc5fba + 1c24928 commit d42fd0a
Show file tree
Hide file tree
Showing 102 changed files with 51,379 additions and 49,464 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/json_schemas.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: "Check consistency of code and JSON Schemas"

on: [push,pull_request]
jobs:
json_schema_check:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.11"]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: |
python -m pip install --upgrade pip
pip install tox
- name: Check JSON Schemas
run: |
tox -e validate_json_schemas
1 change: 1 addition & 0 deletions dev_requirements/requirements-json_schemas.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
click
10 changes: 10 additions & 0 deletions dev_requirements/requirements-json_schemas.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#
# This file is autogenerated by pip-compile with python 3.10
# To update, run:
#
# pip-compile requirements-json_schemas.in
#
click==8.1.7
# via -r requirements-json_schemas.in
colorama==0.4.6
# via click
10 changes: 5 additions & 5 deletions dev_requirements/requirements-type_check.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@
iniconfig==2.0.0
# via pytest
mypy==1.5.1
# via -r requirements-type_check.in
# via -r dev_requirements/requirements-type_check.in
mypy-extensions==1.0.0
# via mypy
networkx==3.1
# via networkx-stubs
networkx-stubs==0.0.1
# via -r requirements-type_check.in
# via -r dev_requirements/requirements-type_check.in
packaging==23.1
# via pytest
pluggy==1.3.0
# via pytest
pytest==7.4.2
# via -r requirements-type_check.in
types-requests==2.31.0.5
# via -r requirements-type_check.in
# via -r dev_requirements/requirements-type_check.in
types-requests==2.31.0.6
# via -r dev_requirements/requirements-type_check.in
types-urllib3==1.26.25.14
# via types-requests
typing-extensions==4.8.0
Expand Down
Loading

0 comments on commit d42fd0a

Please sign in to comment.