Skip to content

Bump black from 23.10.1 to 23.12.1 #124

Bump black from 23.10.1 to 23.12.1

Bump black from 23.10.1 to 23.12.1 #124

Workflow file for this run

name: "Pylint"
on:
push:
paths-ignore:
- "docs/**"
- "*.md"
- "tests/**"
pull_request:
paths-ignore:
- "docs/**"
- "*.md"
- "tests/**"
jobs:
linting:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-test.txt
- name: Run tests
run: |
python3 -m pylint src/sshkey_tools | tee | pylint_report -o report.html
- name: Upload report
uses: actions/upload-artifact@v1
with:
name: pylint-report
path: report.html