We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3808544 commit 605cfd6Copy full SHA for 605cfd6
.github/workflows/aws.yml
@@ -41,12 +41,16 @@ jobs:
41
python-version-file: "pyproject.toml"
42
- name: ensure pip
43
run: python -m ensurepip --upgrade
44
+ - name: which pip
45
+ run: which pip
46
- name: Install the project
47
run: uv sync --all-extras --dev --python-preference only-system
48
- name: uv to requirements.txt
49
run: uv export --project pyproject.toml --no-emit-project --no-hashes > ./infrastructure/requirements.txt
50
- name: check requirements
51
run: cat infrastructure/requirements.txt
52
+ - name: install requirements
53
+ run: pip install -U infrastructure/requirements.txt
54
- name: check pip freeze
55
run: pip freeze
56
- name: install cdk
0 commit comments