1
0
Fork 0
mirror of https://github.com/YunoHost/apps.git synced 2024-09-03 20:06:07 +02:00

ci: mokay we need to explicitly install python toml i guess

This commit is contained in:
Alexandre Aubin 2023-01-20 17:19:49 +01:00
parent 2c42bb2c38
commit bdad939c58

View file

@ -13,7 +13,10 @@ jobs:
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: with:
python-version: 3.11 python-version: 3.11
- name: Check TOML validity for apps.json - name: Install toml python lib
run: |
pip3 install toml
- name: Check TOML validity for apps.toml
run: | run: |
python3 -c "import toml; toml.load(open('apps.toml'))" python3 -c "import toml; toml.load(open('apps.toml'))"