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 9616e0c commit e2601ebCopy full SHA for e2601eb
.github/workflows/build.yml
@@ -41,9 +41,6 @@ jobs:
41
uses: astral-sh/setup-uv@v5
42
with:
43
version: 0.7.8
44
-
45
- - name: Install ruff
46
- run: pip install ruff
47
48
- name: Install AWS SAM CLI
49
uses: aws-actions/setup-sam@v2
@@ -62,7 +59,9 @@ jobs:
62
59
working-directory: ./${{ matrix.service }}
63
60
64
61
- name: Build ${{ matrix.display_name }}
65
- run: make build
+ run: |
+ # Use uv run to ensure all commands run in the virtual environment
+ uv run make build
66
67
env:
68
DOCKER_OPTS: --use-container
@@ -75,6 +74,6 @@ jobs:
75
74
retention-days: 7
76
77
- name: Clean up ${{ matrix.display_name }}
78
- run: make clean
+ run: uv run make clean
79
80
if: always()
0 commit comments