Skip to content

Bump paramiko from 3.4.0 to 3.4.1 (#272) #316

Bump paramiko from 3.4.0 to 3.4.1 (#272)

Bump paramiko from 3.4.0 to 3.4.1 (#272) #316

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