We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edbe61f commit 1923d74Copy full SHA for 1923d74
.github/workflows/python-publish.yml
@@ -17,15 +17,18 @@ jobs:
17
- name: Set up Python
18
uses: actions/setup-python@v2
19
with:
20
- python-version: '3.9'
+ python-version: '3.10'
21
- name: Install dependencies
22
run: |
23
sudo apt-get update && sudo apt-get install -y gettext
24
python -m pip install --upgrade pip
25
pip install setuptools wheel twine poetry
26
+ - name: Install norminette package
27
+ run: |
28
+ poetry install
29
- name: Compile .mo files
30
- python norminette/i18n.py
31
+ poetry run python norminette/i18n.py
32
- name: Build and publish
33
env:
34
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
0 commit comments