CI: Make sure apt is non-interactive (to not break act) (#4559)

This commit is contained in:
Raphael Michel
2024-10-25 17:06:11 +02:00
committed by GitHub
parent cbee1b71fe
commit e4cef6e46b
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ jobs:
restore-keys: | restore-keys: |
${{ runner.os }}-pip- ${{ runner.os }}-pip-
- name: Install system dependencies - name: Install system dependencies
run: sudo apt update && sudo apt install gettext unzip run: sudo apt update && sudo apt install -y gettext unzip
- name: Install Python dependencies - name: Install Python dependencies
run: pip3 install -U setuptools build pip check-manifest run: pip3 install -U setuptools build pip check-manifest
- name: Run check-manifest - name: Run check-manifest
+1 -1
View File
@@ -37,7 +37,7 @@ jobs:
restore-keys: | restore-keys: |
${{ runner.os }}-pip- ${{ runner.os }}-pip-
- name: Install system packages - name: Install system packages
run: sudo apt update && sudo apt install enchant-2 hunspell aspell-en run: sudo apt update && sudo apt install -y enchant-2 hunspell aspell-en
- name: Install Dependencies - name: Install Dependencies
run: pip3 install -Ur requirements.txt run: pip3 install -Ur requirements.txt
working-directory: ./doc working-directory: ./doc
+1 -1
View File
@@ -35,7 +35,7 @@ jobs:
restore-keys: | restore-keys: |
${{ runner.os }}-pip- ${{ runner.os }}-pip-
- name: Install system packages - name: Install system packages
run: sudo apt update && sudo apt install gettext run: sudo apt update && sudo apt -y install gettext
- name: Install Dependencies - name: Install Dependencies
run: pip3 install uv && uv pip install --system -e ".[dev]" run: pip3 install uv && uv pip install --system -e ".[dev]"
- name: Compile messages - name: Compile messages
+1 -1
View File
@@ -50,7 +50,7 @@ jobs:
restore-keys: | restore-keys: |
${{ runner.os }}-pip- ${{ runner.os }}-pip-
- name: Install system dependencies - name: Install system dependencies
run: sudo apt update && sudo apt install gettext run: sudo apt update && sudo apt install -y gettext
- name: Install Python dependencies - name: Install Python dependencies
run: pip3 install uv && uv pip install --system -e ".[dev]" psycopg2-binary run: pip3 install uv && uv pip install --system -e ".[dev]" psycopg2-binary
- name: Run checks - name: Run checks