Skip to content

DAOS-16168 build: Ignore scons version deprecation (#14715) #7328

DAOS-16168 build: Ignore scons version deprecation (#14715)

DAOS-16168 build: Ignore scons version deprecation (#14715) #7328

Workflow file for this run

name: Yamllint
# Run yamllint on PRs. This ignores many pre-existing errors in the src/tests/ftests directory
# however those are silenced via the .yamllint file.
# Checks out a merge of the PR onto the target branch so should test the code as landed, not as it
# is in the PR.
on:
pull_request:
paths:
- '**/*.yaml'
- '**/*.yml'
- utils/cq/requirements.txt
jobs:
yaml-lint:
runs-on: ubuntu-22.04
name: Yamllint check
steps:
- name: Check out source repository
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Set up Python environment
uses: actions/setup-python@v4
with:
python-version: '3'
- name: Install extra python packages
run: pip install --requirement utils/cq/requirements.txt
- name: Run check
run: yamllint --format github .