Skip to content

Commit

Permalink
actual .md
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Sjögren <[email protected]>
  • Loading branch information
konstruktoid committed Jan 8, 2020
1 parent ce75d71 commit 885103f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github: konstruktoid
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -14,7 +14,7 @@ flake8-deprecated
flake8-executable
```

== Github Actions configuration examples
## Github Actions configuration examples

```sh
on: [push, pull_request]
Expand All @@ -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
Expand Down

0 comments on commit 885103f

Please sign in to comment.