Skip to content

Commit

Permalink
added flake8 workflow
Browse files Browse the repository at this point in the history
removed travis CI files
  • Loading branch information
robweber committed Oct 20, 2023
1 parent 9791f53 commit 6a65788
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 22 deletions.
1 change: 0 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@
.settings/ export-ignore
.gitattributes export-ignore
.gitignore export-ignore
.travis.yml export-ignore
README.md export-ignore
CHANGELOG.md export-ignore
19 changes: 19 additions & 0 deletions .github/workflows/flake8.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Python Code Check

on: [push, pull_request, workflow_dispatch]

jobs:
flake8-lint:
runs-on: ubuntu-latest
name: flake8 Linter
steps:
- name: Check out source repository
uses: actions/checkout@v3
- name: Set up Python environment
uses: actions/setup-python@v3
with:
python-version: "3.8"
- name: flake8 Lint
uses: py-actions/flake8@v2
with:
max-line-length: "150"
21 changes: 0 additions & 21 deletions .travis.yml

This file was deleted.

0 comments on commit 6a65788

Please sign in to comment.