DAOS-15002 test: use default pool svc for rebuild tests #5757
Workflow file for this run
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: 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 . |