File tree Expand file tree Collapse file tree 1 file changed +20
-1
lines changed Expand file tree Collapse file tree 1 file changed +20
-1
lines changed Original file line number Diff line number Diff line change 3636 pip install pytest
3737 pytest contract-tests/tests
3838
39+ build-lambda :
40+ runs-on : ubuntu-latest
41+ steps :
42+ - name : Checkout Repo @ SHA - ${{ github.sha }}
43+ uses : actions/checkout@v4
44+ - uses : actions/setup-python@v5
45+ if : ${{ matrix.language == 'python' }}
46+ with :
47+ python-version : ' 3.x'
48+ - name : Build sample lambda function
49+ working-directory : lambda-layer/sample-apps
50+ run : ./package-lambda-function.sh
51+ - name : Build layers
52+ working-directory : lambda-layer/src
53+ run : |
54+ ./build-lambda-layer.sh
55+ pip install tox
56+ tox
57+
3958 lint :
4059 runs-on : ubuntu-latest
4160 strategy :
8099 uses : gradle/gradle-build-action@v3
81100
82101 - name : Build with Gradle
83- run : cd performance-tests; ./gradlew spotlessCheck
102+ run : cd performance-tests; ./gradlew spotlessCheck
You can’t perform that action at this time.
0 commit comments