Skip to content

Bump 0.5.5

Bump 0.5.5 #44

Workflow file for this run

name: Code Lint
on:
push:
paths:
- "**.py"
jobs:
lint:
name: Python Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Run flake8
uses: julianwachholz/flake8-action@v2
with:
checkName: "Python Lint"
plugins: flake8-black
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}