Add multiple new DLLs and new vendors #303
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: YAML Linter | |
on: | |
push: | |
pull_request: | |
paths: | |
- "yml/**" | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Check file extensions | |
run: | | |
files=$(find "$GITHUB_WORKSPACE/yml" -type f -not -name "*.yml"); | |
if [[ $files ]]; then | |
echo "::errror::Files with unexpected extension found, please ensure you use '.yml' (all lower case) for files in the yml/ folder."; | |
for i in $files; do echo "::error file=$i,line=1::Unexpected extension"; done | |
exit 1; | |
fi | |
unset files | |
- name: Run YAML linter | |
uses: ibiqlik/[email protected] | |
with: | |
config_file: .github/.yamllint | |
- uses: cketti/[email protected] #eliezio/[email protected] | |
name: Check schema | |
with: | |
files: "yml/**/*.*" | |
schema: .github/schema/schema.yml | |
strict: true |