Files
netbox-repo/.github/workflows/validation.yml
Daniel W. Anner 12638369b3 Dependencies updates for May 2023 (#1326)
* Dependencies updates for May 2023

* adding updates to pre-commit and validation

* updating pre-commit config
2023-05-05 12:49:12 -04:00

30 lines
847 B
YAML

---
name: Validate definitions
on: # yamllint disable-line rule:truthy
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: 3.8
- name: Install dependencies
run: pip install -r requirements.txt
- name: Lint YAML files
run: |
yamllint --format github --strict \
device-types/ module-types/
- name: Format YAML files (hooks)
run: |
pre-commit run --config .pre-commit-hooks-config.yaml --all-files
- name: Format YAML files (yamlfmt)
run: |
pre-commit run --config .pre-commit-yamlfmt-config.yaml --all-files
- name: Run tests
run: pytest --tb=short -v