updates for bootnodes as a list per docs #6
This file contains hidden or 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: lint | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: install dependencies | |
run: | | |
python3 -m venv venv | |
. venv/bin/activate | |
pip install -r requirements.txt | |
- name: ansible lint | |
run: | | |
. venv/bin/activate | |
ansible-lint -c test/lint/.ansible-lint defaults/*.yml meta/*.yml tasks/*.yml meta/*.yml vars/*.yml |