diff options
author | Pherkel | 2023-08-20 15:03:38 +0200 |
---|---|---|
committer | Pherkel | 2023-08-20 15:03:38 +0200 |
commit | 3939a51657814712500073eaa2830ef8cdde12e4 (patch) | |
tree | 4e18d2d966882deccc9707ecf3f5c7c1e0eb4db8 | |
parent | 3ae21cbc432113531aa15e0cebd8a34c3767ba35 (diff) |
try fixing ci pipeline
-rw-r--r-- | .github/workflows/format.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index 11b8164..4a5a509 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -13,7 +13,13 @@ jobs: python-version: "3.10" - name: Install dependencies run: | - pip install -r requirements.txt + python -m pip install -U pip poetry + poetry --version + poetry check --no-interaction + poetry config virtualenvs.in-project true + poetry install --no-interaction - name: Run CI run: | make lint + + |