NOTASK: input validation for systemd_timedated #147
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: linting | |
on: # yamllint disable-line rule:truthy | |
- push | |
- pull_request | |
jobs: | |
ansible-lint: | |
name: ansible-lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- run: pip install --user pipenv | |
- run: make pipenv | |
- run: pipenv run ansible-lint | |
yamllint: | |
name: yamllint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- run: pip install --user pipenv | |
- run: make pipenv | |
- run: pipenv run yamllint -s . |