From 885103f4f0320b9b5336d83108882d3f54ffac11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Sj=C3=B6gren?= Date: Wed, 8 Jan 2020 13:43:58 +0100 Subject: [PATCH] actual .md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Thomas Sjögren --- .github/FUNDING.yml | 1 + README.md | 14 +++++++------- 2 files changed, 8 insertions(+), 7 deletions(-) create mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..0dcd71b --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1 @@ +github: konstruktoid diff --git a/README.md b/README.md index 8f02fd6..9dba6ef 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ -= Python linting and testing using black and flake8 +# Python linting and testing using black and flake8 A GitHub action that checks Python code using [black](https://github.com/psf/black) and [flake8](https://gitlab.com/pycqa/flake8). -== Tools installed +## Tools installed ``` black @@ -14,7 +14,7 @@ flake8-deprecated flake8-executable ``` -== Github Actions configuration examples +## Github Actions configuration examples ```sh on: [push, pull_request] @@ -31,16 +31,16 @@ jobs: ``` workflow "Python Linting" { - on = "push" - resolves = ["python-linting"] + on # "push" + resolves # ["python-linting"] } action "python-linting" { - uses = "konstruktoid/action-pylint@master" + uses # "konstruktoid/action-pylint@master" } ``` -== Script +## Script ```sh #!/bin/sh -l