Skip to content

Commit

Permalink
Added CI action to run linters on GH, added flake8 configuration file
Browse files Browse the repository at this point in the history
  • Loading branch information
n7s committed Jun 26, 2024
1 parent 48cef43 commit c6b7f93
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[flake8]
exclude = .git,__pycache__,venv,./.venv,dist,examples,build
45 changes: 45 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Testing and linting

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:

runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.12"]
python-version: ["3.11"]

steps:
- uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip setuptools
python3 -m pip install pytest
python3 -m pip install git+https://github.com/typemytype/GlyphConstruction.git
python3 -m pip install flake8
python3 -m pip install ruff
- name: Run pytest tests
run: |
python3 tests/setuptestdata.py
pytest --full-trace -v
- 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: Lint with ruff
run: |
ruff check

0 comments on commit c6b7f93

Please sign in to comment.