Compare commits

..

2 Commits

Author SHA1 Message Date
Sergio Martínez Portela
df178d08d8 feat(dom): Add support for generic drawer outputs.
Some checks failed
Testing / pytest (push) Successful in 23s
Testing / mypy (push) Failing after 28s
Testing / style-formatting (push) Failing after 24s
Testing / style-sorted-imports (push) Successful in 18s
Testing / stability-extra-test (push) Successful in 24s
2025-02-09 14:13:28 +01:00
Sergio Martínez Portela
c0fc78fe33 fix(gitea): Fix build with newer images. 2025-02-09 14:13:28 +01:00

View File

@ -10,7 +10,7 @@ jobs:
uses: actions/checkout@v3
- run: apt-get update && apt-get install -y python3-pip
- run: pip install --break-system-package -e .
- run: pip install pytest
- run: pip install --break-system-package pytest
- run: pytest
mypy:
@ -20,7 +20,7 @@ jobs:
uses: actions/checkout@v3
- run: apt-get update && apt-get install -y python3-pip
- run: pip install --break-system-package -e .
- run: pip install mypy
- run: pip install --break-system-package mypy
- run: mypy org_rw --check-untyped-defs
style-formatting:
@ -30,7 +30,7 @@ jobs:
uses: actions/checkout@v3
- run: apt-get update && apt-get install -y python3-pip
- run: pip install --break-system-package -e .
- run: pip install black
- run: pip install --break-system-package black
- run: black --check .
style-sorted-imports:
@ -40,7 +40,7 @@ jobs:
uses: actions/checkout@v3
- run: apt-get update && apt-get install -y python3-pip
- run: pip install --break-system-package -e .
- run: pip install isort
- run: pip install --break-system-package isort
- run: isort --profile black --check .
stability-extra-test: