Skip to content

Commit fbc0cc3

Browse files
Fixing dependency resolution
1 parent f1d5a91 commit fbc0cc3

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.github/workflows/quality_check.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
with:
6161
python-version: ${{ matrix.python-version }}
6262
- name: Install dependencies
63-
run: make dev
63+
run: make dev-quality-code
6464
- name: Formatting and Linting
6565
run: make lint
6666
- name: Static type checking

.github/workflows/run-e2e-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
npm ci
7171
npx cdk --version
7272
- name: Install dependencies
73-
run: make dev
73+
run: dev-quality-code
7474
- name: Configure AWS credentials
7575
uses: aws-actions/configure-aws-credentials@5fd3084fc36e372ff1fff382a39b10d03659f355 # v2.2.0
7676
with:

Makefile

+5
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ dev:
1010
poetry install --extras "all redis datamasking"
1111
pre-commit install
1212

13+
dev-quality-code:
14+
pip install --upgrade pip pre-commit poetry
15+
poetry install --extras "all redis datamasking"
16+
pre-commit install
17+
1318
dev-gitpod:
1419
pip install --upgrade pip poetry
1520
poetry install --extras "all redis datamasking"

0 commit comments

Comments
 (0)