From 4dfd378cdca796ad918e3990d575d4fbe6077429 Mon Sep 17 00:00:00 2001 From: Matthew Peveler Date: Fri, 29 May 2020 19:59:21 -0400 Subject: add github action workflow to validate flake8 Signed-off-by: Matthew Peveler --- .github/workflows/test.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/test.yml (limited to '.github') 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 -- cgit v1.2.1