This repository has been archived by the owner on Aug 1, 2024. It is now read-only.
chore: Update aws-cdk-lib requirement from ~=2.139 to ~=2.140 in /code/python #258
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Synth Python sample code | |
on: | |
pull_request: | |
paths: | |
- code/python/** | |
jobs: | |
main-workshop: | |
name: CDK synth main-workshop sample code | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
architecture: x64 | |
- name: Install Python modules | |
working-directory: code/python/main-workshop | |
run: python3 -m pip install -r requirements.txt | |
- name: CDK synth | |
working-directory: code/python/main-workshop | |
run: npx cdk synth | |
pipelines-workshop: | |
name: CDK synth pipelines-workshop sample code | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
architecture: x64 | |
- name: Install Python modules | |
working-directory: code/python/pipelines-workshop | |
run: python3 -m pip install -r requirements.txt | |
- name: CDK synth | |
working-directory: code/python/pipelines-workshop | |
run: npx cdk synth | |
tests-workshop: | |
name: CDK synth and test tests-workshop sample code | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
architecture: x64 | |
- name: Install Python modules | |
working-directory: code/python/tests-workshop | |
run: python3 -m pip install -r requirements.txt | |
- name: Install Python dev modules | |
working-directory: code/python/tests-workshop | |
run: python3 -m pip install -r requirements-dev.txt | |
- name: CDK synth | |
working-directory: code/python/tests-workshop | |
run: npx cdk synth | |
- name: Run tests | |
working-directory: code/python/tests-workshop | |
run: python3 -m pytest |