File tree 1 file changed +6
-5
lines changed
1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -18,18 +18,19 @@ jobs:
18
18
-X POST \
19
19
-d '{"content":"+1"}' \
20
20
-H "Accept: application/vnd.github.squirrel-girl-preview+json" \
21
- -H "Authorization: token ${{github.token }}"
21
+ -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}"
22
22
- uses : actions/checkout@v3
23
+ - uses : awalsh128/cache-apt-pkgs-action@latest
24
+ with :
25
+ packages : hunspell hunspell-es gettext
26
+ version : 1.0
23
27
- name : Preparar Python v3.10
24
28
uses : actions/setup-python@v4
25
29
with :
26
30
python-version : " 3.10"
27
31
cache : " pip"
28
32
- name : Instalar dependencias
29
- run : |
30
- sudo apt-get update
31
- sudo apt-get install -y hunspell hunspell-es gettext
32
- python -m pip install -r requirements.txt
33
+ run : python -m pip install -r requirements.txt
33
34
- name : Ejecutar Powrap
34
35
run : powrap --quiet **/*.po
35
36
- name : Revisar con Pospell
You can’t perform that action at this time.
0 commit comments