Skip to content

Bump pytest from 7.2.0 to 7.4.3 #219

Bump pytest from 7.2.0 to 7.4.3

Bump pytest from 7.2.0 to 7.4.3 #219

Workflow file for this run

---
name: Lint
on: # yamllint disable-line rule:truthy
push:
branches:
- "main"
- "v**"
pull_request:
branches:
- "main"
- "v**"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install Python Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
- uses: "pre-commit/action@v3.0.0"