Skip to content

v1.0.0

v1.0.0 #4

Workflow file for this run

name: Python Linting
on:
push:
pull_request:
schedule:
# Runs every 30 days at midnight UTC
- cron: '0 0 */30 * *'
jobs:
build:
name: Python Linting
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Python Deps
run: python3 -m pip install flake8
- name: Lint Scripts
shell: bash
run: |
python3 -m flake8 --show-source --ignore E501 src/