- Notifications
You must be signed in to change notification settings - Fork396
Migrar CI de TravisCI a Github Actions#1158
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
ab34d31
a6b0748
24212d7
db4600f
5a78984
db44bea
2a77e76
e989d4a
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Test | ||
on: | ||
push: | ||
branches: | ||
- 3.* | ||
pull_request: | ||
jobs: | ||
test: | ||
name: Test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Preparar Python v3.8 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.8 | ||
- name: Sincronizar con CPython | ||
run: | | ||
git submodule sync | ||
git submodule update --init --force cpython | ||
- name: Instalar dependencias | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y hunspell hunspell-es gettext | ||
python -m pip install -r requirements.txt | ||
pip list | ||
pospell --version | ||
powrap --version | ||
- name: Powrap | ||
run: powrap --check --quiet **/*.po | ||
- name: Pospell | ||
run: | | ||
python scripts/create_dict.py | ||
pospell -p dict.txt -l es_AR -l es_ES **/*.po | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. A ver si actualizo#960 y le hago merge si alguien con permisos me lo aprueba y nos evitamos los dos diccionarios. | ||
- name: Construir documentación | ||
run: PYTHONWARNINGS=ignore::FutureWarning sphinx-build -j auto -W --keep-going -b html -d cpython/Doc/_build/doctree -D language=es . cpython/Doc/_build/html |
This file was deleted.
Uh oh!
There was an error while loading.Please reload this page.