Created a Github Action for Python's Black formatter. (#112)

* Setup Python Linter

* Setup Rust linting

* Fix Rust lint

* Fixing rust lint again.

* Disabling rust linting, due to bug in current rustfmt release.

* Delete rustlint, cause @nikita-b has a working version.
This commit is contained in:
Daniel Solmann 2020-09-10 16:41:37 +03:00 committed by GitHub
parent 118611eabd
commit 0727e1560a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

11
.github/workflows/black.yml vendored Normal file
View File

@ -0,0 +1,11 @@
name: Python Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: psf/black@stable