mirror of
https://github.com/gyptazy/ProxLB.git
synced 2026-04-05 20:31:57 +02:00
Fixes: #114 Fixes: #132 Fixes: #130 Fixes: #129 Fixes: #128 Fixes: #127 Fixes: #123 Fixes: #102
22 lines
607 B
YAML
22 lines
607 B
YAML
name: Code linting
|
|
on: [push]
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python-version: ["3.8"]
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Setup dependencies for code linting
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- name: Install additional dependencies for code linting
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get -y install python3-pycodestyle pycodestyle
|
|
- name: Run code linting on ProxLB Python code
|
|
run: |
|
|
pycodestyle proxlb/*
|