Merge pull request #922 from ae-utbm/ci

Fix CI
This commit is contained in:
Bartuccio Antoine 2024-11-15 14:46:05 +01:00 committed by GitHub
commit 346439076e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,7 +6,7 @@ runs:
- name: Install apt packages
uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: gettext pipx
packages: gettext
version: 1.0 # increment to reset cache
- name: Set up python
@ -19,12 +19,12 @@ runs:
uses: actions/cache@v3
with:
path: ~/.local
key: poetry-2 # increment to reset cache
key: poetry-3 # increment to reset cache
- name: Install Poetry
if: steps.cached-poetry.outputs.cache-hit != 'true'
shell: bash
run: pipx install poetry
run: curl -sSL https://install.python-poetry.org | python3 -
- name: Check pyproject.toml syntax
shell: bash