Bump the csi-unity group across 1 directory with 4 updates #305
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
# This action checks the linting errors in yaml files | |
name: yaml-lint | |
on: | |
pull_request: | |
branches: | |
- main | |
- release-v* | |
jobs: | |
yaml_lint_scan: | |
name: Run Yaml Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v4 | |
- name: setup python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- run: pip install yamllint | |
- run: yamllint . |