Skip to content

chore(deps): update pre-commit hook adrienverge/yamllint to v1.36.0 #945

chore(deps): update pre-commit hook adrienverge/yamllint to v1.36.0

chore(deps): update pre-commit hook adrienverge/yamllint to v1.36.0 #945

Workflow file for this run

---
name: Test
on:
push:
branches:
- main
- renovate/**
pull_request:
branches:
- main
env:
PYTHON_VERSION: 3.13
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: "pip"
cache-dependency-path: "**/requirements_dev.txt"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements_dev.txt ]; then pip install -r requirements_dev.txt; fi
- name: Test with pytest
run: |
pytest