summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMatthew Peveler <matt.peveler@gmail.com>2020-05-29 19:59:21 -0400
committerMatthew Peveler <matt.peveler@gmail.com>2020-05-29 20:06:33 -0400
commit4dfd378cdca796ad918e3990d575d4fbe6077429 (patch)
tree707c7c9a2b28f467c8f6c78d9f9734ae33f4bbdd /.github
parentc12afe913d64df3def72c2e8faf61bf6b5fa3369 (diff)
downloadasciidoc-git-4dfd378cdca796ad918e3990d575d4fbe6077429.tar.gz
add github action workflow to validate flake8
Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test.yml28
1 files changed, 28 insertions, 0 deletions
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