Skip to content

Commit f898dd7

Browse files
committed
Use requirements-dev.txt in workflows
1 parent d7d9061 commit f898dd7

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/end2end.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
steps:
1010
- uses: actions/checkout@v4
1111
- name: Install poetry
12-
run: pip install poetry
12+
run: pip install -r requirements-dev.txt
1313
- name: Build
1414
run: make build
1515
- name: Upload artifacts

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
steps:
5757
- uses: actions/checkout@v4
5858
- name: Install poetry
59-
run: pip install poetry
59+
run: pip install -r requirements-dev.txt
6060
- name: Set the version for this release
6161
run: |
6262
TAG_NAME=${GITHUB_REF##*/}

.github/workflows/qa-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Setup safe-chain
3131
run: curl -fsSL https://github.com/AikidoSec/safe-chain/releases/latest/download/install-safe-chain.sh | sh -s -- --ci
3232
- name: Install poetry
33-
run: pip install poetry
33+
run: pip install -r firewall-python/requirements-dev.txt
3434

3535
- name: Build firewall-python dev package
3636
run: |

.github/workflows/test-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
steps:
5858
- uses: actions/checkout@v4
5959
- name: Install poetry
60-
run: pip install poetry
60+
run: pip install -r requirements-dev.txt
6161
- name: Set the version for this release
6262
run: |
6363
TAG_NAME=${GITHUB_REF##*/}

0 commit comments

Comments
 (0)