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

ci: missing toml python module, let's try using python 3.11 idk

This commit is contained in:
Alexandre Aubin 2023-01-20 17:18:10 +01:00
parent cd4e6f0cbc
commit 2c42bb2c38

View file

@ -9,7 +9,10 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Check TOML validity for apps.json - name: Check TOML validity for apps.json
run: | run: |
python3 -c "import toml; toml.load(open('apps.toml'))" python3 -c "import toml; toml.load(open('apps.toml'))"