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 cb0cc91 commit 1591977Copy full SHA for 1591977
.github/workflows/main-build-python38.yml
@@ -34,6 +34,20 @@ jobs:
34
- uses: actions/setup-go@v4
35
with:
36
go-version: '^1.20.2'
37
+ - uses: actions/setup-python@v4
38
+ if: ${{ matrix.language == 'python' }}
39
+ with:
40
+ python-version: '3.x'
41
+ - name: Cache (Python)
42
+ uses: actions/cache@v3
43
44
45
+ path: |
46
+ ~/go/pkg/mod
47
+ ~/.cache/pip
48
+ key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}-go-${{ hashFiles('**/go.sum') }}
49
+ restore-keys: |
50
+ ${{ runner.os }}-pip-
51
- uses: aws-actions/[email protected]
52
53
role-to-assume: ${{ secrets.INTEG_TEST_LAMBDA_ROLE_ARN }}
0 commit comments