8000 fix: format docs · akfamily/aktools@350ec12 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
< 8000 ul class="pagehead-actions flex-shrink-0 d-none d-md-inline" style="padding: 2px 0;">
  • Notifications You must be signed in to change notification settings
  • Fork 149
  • fix: format docs

    fix: format docs #169

    Workflow file for this run

    name: build
    on:
    push:
    branches:
    - dev
    pull_request:
    branches:
    - main
    - dev
    jobs:
    build:
    runs-on: ubuntu-latest
    strategy:
    matrix:
    os: [ubuntu-latest, macos-latest, windows-latest]
    python-version: ["3.12"]
    steps:
    - uses: actions/checkout@v4
    - name: Set up Python ${{ matrix.python-version }}
    uses: actions/setup-python@v5
    with:
    python-version: ${{ matrix.python-version }}
    - name: Install dependencies
    run: |
    python -m pip install --upgrade pip
    pip install -r requirements.txt
    - name: Lint with flake8
    run: |
    pip install flake8
    # 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: Test with pytest
    run: |
    pip install pytest
    pytest
    0