Dev to prd #56
This file contains hidden or 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: CI | |
| on: | |
| pull_request: | |
| branches: [prd, stg, dev] | |
| types: [opened, reopened, synchronize, edited] | |
| paths-ignore: # Pushes that include only these changed files won't trigger actions | |
| - "**/README.md" | |
| - "**/.gitignore" | |
| - "**/docs/*" | |
| jobs: | |
| checkMeds: | |
| name: Check Meds (merge every day) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check Meds | |
| uses: byuawsfhtl/MedsAction@v1.0.0 | |
| standardCheck: | |
| name: Python Standard Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Follow Python Standard | |
| uses: byuawsfhtl/PythonStandardAction@v1.0.8 |