Skip to content

feat(lint.yml): Fix Lint #217

feat(lint.yml): Fix Lint

feat(lint.yml): Fix Lint #217

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2-beta
- uses: actions/setup-python@v2
with:
# Once codebase is updated, this can easily be changed to any specific version.
python-version: "3.11"
- name: Flynt f-string Formatter
run: >
flynt .
--line-length=79
--transform-concats
--fail-on-change
- name: Black Code Formatter
uses: psf/black@stable