Skip to content

Bump idna from 3.6 to 3.7 #251

Bump idna from 3.6 to 3.7

Bump idna from 3.6 to 3.7 #251

Workflow file for this run

---
name: CI
# yamllint disable-line rule:truthy
on:
push:
branches:
- main
tags:
- v*
pull_request:
branches:
- main
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Install test dependencies
run: pip install -r requirements-test.txt
- name: Install pve_exporter
run: pip install .
- name: Run pylint
run: pylint pve_exporter
- name: Run pyflakes
run: pyflakes src/pve_exporter