Skip to content

Merge pull request #19 from Ghua8088/ghua8088-latest-feature-branch #185

Merge pull request #19 from Ghua8088/ghua8088-latest-feature-branch

Merge pull request #19 from Ghua8088/ghua8088-latest-feature-branch #185

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event_name == 'pull_request' && github.head_ref || github.ref_name }}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install Linting Tools
run: |
pip install flake8 black
- 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
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Check Formatting with Black
run: |
black . --check