summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.flake87
-rw-r--r--.github/workflows/test.yml28
2 files changed, 35 insertions, 0 deletions
diff --git a/.flake8 b/.flake8
new file mode 100644
index 0000000..60c1da0
--- /dev/null
+++ b/.flake8
@@ -0,0 +1,7 @@
+[flake8]
+
+max-line-length=88
+
+exclude=
+ a2x.py
+ asciidoc.py
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
new file mode 100644
index 0000000..039fe3f
--- /dev/null
+++ b/.github/workflows/test.yml
@@ -0,0 +1,28 @@
+name: Test
+
+on:
+ push:
+ branches: [ '*' ]
+ pull_request:
+ branches: [ '*' ]
+
+jobs:
+ lint:
+ runs-on: ubuntu-latest
+ env:
+ python-version: 3.6
+
+ steps:
+ - uses: actions/checkout@v2
+
+ - name: Set up Python ${{ matrix.python-version }}
+ uses: actions/setup-python@v1
+ with:
+ python-version: ${{ matrix.python-version }}
+
+ - name: Install Dependencies
+ run: |
+ python3 -m pip install -U pip
+ python3 -m pip install -U pytest pytest-runner flake8
+ - name: Lint codebase
+ run: python3 -m flake8