Skip to content

Acelera las ejecuciones en CI #2702

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Nov 6, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Agrupa y comenta steps del job Test
Todos los pasos estaban antes aglomerados. Ya que queremos agregar más
pasos, es beneficioso agrupar los pasos existentes para clarificar qué
lógica se está llevando a cabo.

Signed-off-by: Rodrigo Tobar <rtobar@icrar.org>
  • Loading branch information
rtobar committed Nov 1, 2023
commit b5709aa040a85b35a26092a2f62ddaa21aa2fe40
7 changes: 7 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,12 @@ jobs:
name: Test
runs-on: ubuntu-22.04
steps:
# Obtención del código
- uses: actions/checkout@v4
with:
submodules: 'true'

# Instalación de dependencias
- name: Preparar Python v3.11
uses: actions/setup-python@v4
with:
Expand All @@ -31,6 +34,8 @@ jobs:
pip list
pospell --version
powrap --version

# Chequeos a realizar
- name: TRANSLATORS
run: |
diff -Naur TRANSLATORS <(LANG=es python scripts/sort.py < TRANSLATORS)
Expand All @@ -42,6 +47,8 @@ jobs:
- name: Pospell
run: |
python scripts/check_spell.py

# Construcción de la documentación
- name: Construir documentación
run: |
# FIXME: Relative paths for includes in 'cpython'
Expand Down