Skip to content

Using repo as an wrapper to LPN GitHub #21

Using repo as an wrapper to LPN GitHub

Using repo as an wrapper to LPN GitHub #21

# GitHub actions workflow.
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions
# https://github.com/marketplace/actions/python-flake8
name: Flake8
on:
push:
branches: [lpn-launcher, main]
jobs:
lint:
name: Python Lint
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: "3.13"
- name: Run flake8
uses: julianwachholz/flake8-action@v2
with:
checkName: "Python Lint"