Skip to content

GitHub Action

GitHub Action #36

Workflow file for this run

name: GitHub Action
on:
push:
pull_request:
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
env:
AGENT_TOOLSDIRECTORY: /opt/hostedtoolache
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
pip install pylint
- name: Lint with flake8
run: |
flake8 python_fu_cartoonify.py --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 python_fu_cartoonify.py --count --max-complexity=10 --max-line-length=79 --statistics
- name: Lint with Pylint
run: |
pylint python_fu_cartoonify.py