Skip to content

Commit

Permalink
Revert "synth validation was moved to pre-deploy-check (#6)" (#11)
Browse files Browse the repository at this point in the history
This reverts commit ac8a243.
Restore synth check
  • Loading branch information
zaro0508 authored Nov 13, 2024
1 parent 7c28ad6 commit f5000bf
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,19 @@ jobs:
run: pip install -r requirements.txt -r requirements-dev.txt
- name: Run unit tests
run: python -m pytest tests/ -s -v
synth:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install dependencies
run: pip install -r requirements.txt -r requirements-dev.txt
- name: Generate cloudformation
uses: youyo/aws-cdk-github-actions@v2
env:
ENV: dev
with:
cdk_subcommand: 'synth'
actions_comment: false
debug_log: true
cdk_args: '--output ./cdk.out'

0 comments on commit f5000bf

Please sign in to comment.