Skip to content

Commit

Permalink
G H A
Browse files Browse the repository at this point in the history
  • Loading branch information
devosb committed Aug 7, 2024
1 parent 7fa1cb9 commit 8e42ac1
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions file1.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 8e42ac1

Please sign in to comment.