File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -18,18 +18,19 @@ jobs:
1818 -X POST \
1919 -d '{"content":"+1"}' \
2020 -H "Accept: application/vnd.github.squirrel-girl-preview+json" \
21- -H "Authorization: token ${{github.token }}"
21+ -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}"
2222 - uses : actions/checkout@v3
23+ - uses : awalsh128/cache-apt-pkgs-action@latest
24+ with :
25+ packages : hunspell hunspell-es gettext
26+ version : 1.0
2327 - name : Preparar Python v3.10
2428 uses : actions/setup-python@v4
2529 with :
2630 python-version : " 3.10"
2731 cache : " pip"
2832 - 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
3334 - name : Ejecutar Powrap
3435 run : powrap --quiet **/*.po
3536 - name : Revisar con Pospell
You can’t perform that action at this time.
0 commit comments