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

This commit is contained in:
Sergio Martínez Portela 2025-02-09 14:11:32 +01:00
parent 9c04717a12
commit 34446bdb3b

View File

@ -9,7 +9,7 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v3
- run: apt-get update && apt-get install -y python3-pip
- run: pip install -e .
- run: pip install --break-system-package -e .
- run: pip install pytest
- run: pytest
@ -19,7 +19,7 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v3
- run: apt-get update && apt-get install -y python3-pip
- run: pip install -e .
- run: pip install --break-system-package -e .
- run: pip install mypy
- run: mypy org_rw --check-untyped-defs
@ -29,7 +29,7 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v3
- run: apt-get update && apt-get install -y python3-pip
- run: pip install -e .
- run: pip install --break-system-package -e .
- run: pip install black
- run: black --check .
@ -39,7 +39,7 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v3
- run: apt-get update && apt-get install -y python3-pip
- run: pip install -e .
- run: pip install --break-system-package -e .
- run: pip install isort
- run: isort --profile black --check .
@ -49,5 +49,5 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v3
- run: apt-get update && apt-get install -y git-core python3-pip
- run: pip install -e .
- run: pip install --break-system-package -e .
- run: bash extra-tests/check_all.sh