Skip to content

Merge pull request #142 from pybitcash/docs #43

Merge pull request #142 from pybitcash/docs

Merge pull request #142 from pybitcash/docs #43

Workflow file for this run

name: Lint
on: [push]
jobs:
lint:
name: Check coding style
runs-on: ubuntu-latest
steps:
# clone repo and check out
- uses: actions/checkout@v3
- name: Check that all Python code is linted with black
run: pip install black && black . --check