aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPherkel2023-08-20 15:03:38 +0200
committerPherkel2023-08-20 15:03:38 +0200
commit3939a51657814712500073eaa2830ef8cdde12e4 (patch)
tree4e18d2d966882deccc9707ecf3f5c7c1e0eb4db8
parent3ae21cbc432113531aa15e0cebd8a34c3767ba35 (diff)
try fixing ci pipeline
-rw-r--r--.github/workflows/format.yml8
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
+
+