-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (32 loc) · 1.1 KB
/
workflows.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---
name: ai-cfia workflows
on:
pull_request:
types:
- opened
- closed
- synchronize
jobs:
python-lint:
name: workflow-lint-test-python
uses: ai-cfia/github-workflows/.github/workflows/workflow-lint-test-python.yml@main
secrets: inherit
mkd-check:
name: workflow-markdown-check
uses: ai-cfia/github-workflows/.github/workflows/workflow-markdown-check.yml@main
with: # to pass inputs to called workflow
config-file-path: '.mlc_config.json'
secrets: inherit
repo-validation:
name: workflow-repo-standards-validation
uses: ai-cfia/github-workflows/.github/workflows/workflow-repo-standards-validation.yml@main
secrets: inherit
# This job wat modified to use the default yamllint configuration
# We needed to change the config of the main
yaml-check:
name: workflow-yaml-check
uses: ai-cfia/github-workflows/.github/workflows/workflow-yaml-check.yml@main
# I need to add the extends part to change the max line length
input:
config-file-path: ai-cfia/github-workflows/.yamllint.ymll@main
secrets: inherit