From c3cdfee0aaf3434a7b7ea75acff7f9495b930a7a Mon Sep 17 00:00:00 2001 From: Marius Alwan Meyer Date: Fri, 18 Aug 2023 15:07:40 +0200 Subject: [PATCH] [CI] Lint & Test --- .gitea/workflows/python-lint-test.yml | 40 +++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .gitea/workflows/python-lint-test.yml diff --git a/.gitea/workflows/python-lint-test.yml b/.gitea/workflows/python-lint-test.yml new file mode 100644 index 0000000..cde2a5c --- /dev/null +++ b/.gitea/workflows/python-lint-test.yml @@ -0,0 +1,40 @@ +# This workflow will install Python dependencies, run tests and lint with a single version of Python +# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions + +name: Python Lint & Test + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - name: Install Dependencies + run: | + apt-get update; + apt-get install --yes --no-install-recommends \ + python3-pip \ + python3-pytest \ + flake8 + - uses: actions/checkout@v3 + - name: Install dependencies + run: | + if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + - name: Install dependencies for testing + run: | + if [ -f requirements-test.txt ]; then pip install -r requirements-test.txt; fi + - name: Lint with flake8 + run: | + # stop the build if there are Python syntax errors or undefined names + flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics + # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide + flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics + - name: Test with pytest + run: | + pytest