Skip to content

Commit 1591977

Browse files
authored
Rebased (#588)
1 parent cb0cc91 commit 1591977

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/main-build-python38.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,20 @@ jobs:
3434
- uses: actions/setup-go@v4
3535
with:
3636
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+
if: ${{ matrix.language == 'python' }}
44+
with:
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-
3751
- uses: aws-actions/[email protected]
3852
with:
3953
role-to-assume: ${{ secrets.INTEG_TEST_LAMBDA_ROLE_ARN }}

0 commit comments

Comments
 (0)