Skip to content

Fixes Containerized the application for use in Kubernetes #27 #2

Fixes Containerized the application for use in Kubernetes #27

Fixes Containerized the application for use in Kubernetes #27 #2

Workflow file for this run

name: Python Lint
on:
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set Up Python
uses: actions/setup-python@v4
with:
python-version: '3.x' # Specify the Python version you need
- name: Install flake8
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Run flake8 Linting
run: |
flake8 .