File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed
Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 3333 poetry-${{ runner.os }}-
3434
3535 - name : Install dependencies
36- run : poetry install --no-interaction
36+ run : |
37+ poetry lock --no-update || poetry lock
38+ poetry install --no-interaction
3739
3840 - name : Run black
3941 run : poetry run black --check bizy tests
8890 poetry-${{ runner.os }}-py${{ matrix.python-version }}-
8991
9092 - name : Install dependencies
91- run : poetry install --no-interaction
93+ run : |
94+ poetry lock --no-update || poetry lock
95+ poetry install --no-interaction
9296
9397 - name : Run tests with coverage
9498 env :
@@ -118,7 +122,9 @@ jobs:
118122 uses : snok/install-poetry@v1
119123
120124 - name : Install dependencies
121- run : poetry install --no-interaction
125+ run : |
126+ poetry lock --no-update || poetry lock
127+ poetry install --no-interaction
122128
123129 - name : Run bandit
124130 run : poetry run bandit -r bizy -f json -o bandit-report.json
Original file line number Diff line number Diff line change 169169
170170# Flake8 configuration
171171.flake8
172+
173+ # Temporarily ignore poetry.lock while we fix dependencies
174+ # poetry.lock
You can’t perform that action at this time.
0 commit comments