clean(ZMS-3414): add todos for zmscitizenapi and ddev command for run… #3697
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: Combined Workflow | |
on: [push] | |
jobs: | |
call-code-quality: | |
uses: ./.github/workflows/code-quality.yaml | |
call-unit-tests: | |
uses: ./.github/workflows/unit-tests.yaml | |
check-and-proceed: | |
needs: [call-code-quality, call-unit-tests] | |
runs-on: ubuntu-latest | |
if: | | |
always() && | |
needs.call-code-quality.result == 'success' && | |
needs.call-unit-tests.result == 'success' | |
steps: | |
- run: echo "All required checks passed" |