Compare commits

..

2 Commits

Author SHA1 Message Date
Sergio Martínez Portela
bd1c464a2a feat(dom): Add support for generic drawer outputs.
Some checks failed
Testing / stability-extra-test (push) Waiting to run
Testing / pytest (push) Failing after 21s
Testing / mypy (push) Failing after 24s
Testing / style-formatting (push) Failing after 16s
Testing / style-sorted-imports (push) Has been cancelled
2025-02-09 14:11:52 +01:00
Sergio Martínez Portela
34446bdb3b fix(gitea): Fix build with newer images.
Some checks failed
Testing / pytest (push) Has been cancelled
Testing / mypy (push) Has been cancelled
Testing / style-formatting (push) Has been cancelled
Testing / style-sorted-imports (push) Has been cancelled
Testing / stability-extra-test (push) Has been cancelled
2025-02-09 14:11:32 +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 --break-system-package pytest
- run: pip install 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 --break-system-package mypy
- run: pip install 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 --break-system-package black
- run: pip install 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 --break-system-package isort
- run: pip install isort
- run: isort --profile black --check .
stability-extra-test: