41 as a devops i would like to have a pipeline to host our own custom dockerfiles #25
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: Devops repository workflow | |
on: | |
pull_request: | |
types: | |
- opened | |
- closed | |
- synchronize | |
jobs: | |
markdown-check: | |
uses: | |
ai-cfia/github-workflows/.github/workflows/workflow-markdown-check.yml@main | |
yaml-check: | |
uses: | |
ai-cfia/github-workflows/.github/workflows/workflow-yaml-check.yml@main | |
with: | |
config-file-path: '.yamllint.yml' | |
sh-check: | |
uses: | |
ai-cfia/github-workflows/.github/workflows/workflow-sh-check.yml@main | |
repo-standard: | |
uses: | |
ai-cfia/github-workflows/.github/workflows/workflow-repo-standards-validation.yml@main | |
secrets: inherit | |
test-python: | |
uses: ai-cfia/github-workflows/.github/workflows/workflow-lint-test-python.yml@main | |
secrets: inherit |