From 8e42ac1f43bd88e6392cc28b7ac98625c731ad0d Mon Sep 17 00:00:00 2001 From: Bobby de Vos Date: Wed, 7 Aug 2024 12:31:44 -0600 Subject: [PATCH] G H A --- .github/workflows/main.yml | 27 +++++++++++++++++++++++++++ file1.txt | 1 + 2 files changed, 28 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..daf556c --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,27 @@ +name: Main + +on: [push, pull_request] + +permissions: + contents: read + +jobs: + lint: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Setup Python + uses: actions/setup-python@v5 + with: + python-version: 3.x + - name: Install dependencies + run: | + python -m pip install --upgrade pip + python -m pip install flake8 + - 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 diff --git a/file1.txt b/file1.txt index 43406d6..ab84d58 100644 --- a/file1.txt +++ b/file1.txt @@ -5,3 +5,4 @@ line 3 - Modify this line in master branch line 4 - Modify this line in different ways in both feature1 and master branches line 5 - changelog +line 6 - GHA